You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you use parameterized test and use macros or enum values inside the TEST_CASE macro of external headers, the linker will exit with an error. The reason for this is, that header files from the test file are not written into the test runner.
The reason for this is that we pass an empty array to generator_test_runner in generator.rb line 70
test_file_includes=[]# Empty list for now, since apparently unused# build runner filebegin@generator_test_runner.generate(module_name,runner_filepath,test_cases,mock_list,test_file_includes)
The text was updated successfully, but these errors were encountered:
When you use parameterized test and use macros or enum values inside the TEST_CASE macro of external headers, the linker will exit with an error. The reason for this is, that header files from the test file are not written into the test runner.
The reason for this is that we pass an empty array to generator_test_runner in generator.rb line 70
The text was updated successfully, but these errors were encountered: