55 lines
963 B
Python
55 lines
963 B
Python
import unittest
|
|
|
|
|
|
class TestGenConcatenation(unittest.TestCase):
|
|
|
|
def test_operator_nesting(self):
|
|
pass
|
|
|
|
def test_recursive_population_of_vars(self):
|
|
pass
|
|
|
|
def test_recursive_population_of_literals(self):
|
|
pass
|
|
|
|
def test_recursive_block_population(self):
|
|
pass
|
|
|
|
def test_routine_population(self):
|
|
pass
|
|
|
|
def test_full_population(self):
|
|
pass
|
|
|
|
|
|
class TestAutoGeneration(unittest.TestCase):
|
|
|
|
def routines_call_routines(self):
|
|
pass
|
|
|
|
def test_routines_use_globals(self):
|
|
pass
|
|
|
|
def test_variable_reuse(self):
|
|
pass
|
|
|
|
def test_max_nesting_depth(self):
|
|
pass
|
|
|
|
def test_max_conditionals_loops(self):
|
|
pass # test the parameter limiting the maximum number of loops and conditionals per routine
|
|
|
|
|
|
def test_recursive_calls(self):
|
|
pass
|
|
|
|
def test_max_range_length(self):
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|