Lines Matching refs:tests
55 tests = find_tests(source)
63 generate(input_file, output_file, tests, used_mocks, testfile_includes)
73 def generate(input_file, output_file, tests, used_mocks, testfile_includes)
76 create_externs(output, tests, used_mocks)
81 create_main(output, input_file, tests, used_mocks)
87 create_h_file(output, @options[:header_file], tests, testfile_includes, used_mocks)
102 # find tests
117 # determine line numbers and create tests to run
193 def create_externs(output, tests, _mocks)
197 tests.each do |test|
320 def create_main(output, filename, tests, used_mocks)
337 tests.each do |test|
349 tests.each { |test| output.puts(" UnityPrint(\" #{test[:test]}\");\n UNITY_PRINT_EOL();") }
365 tests.each do |test|
373 tests.each { |test| output.puts(" RUN_TEST(#{test[:test]}, #{test[:line_number]});") }
381 def create_h_file(output, filename, tests, testfile_includes, used_mocks)
395 tests.each do |test|
445 ' --use_param_tests=1 - enable parameterized tests (disabled by default)',