| 6913 | using TearDownTestSuiteFunc = void (*)(); |
| 6914 | |
| 6915 | struct CodeLocation { |
| 6916 | CodeLocation(const std::string& a_file, int a_line) |
| 6917 | : file(a_file), line(a_line) {} |
| 6918 | |
| 6919 | std::string file; |
| 6920 | int line; |
| 6921 | }; |
| 6922 | |
| 6923 | // Helper to identify which setup function for TestCase / TestSuite to call. |
| 6924 | // Only one function is allowed, either TestCase or TestSute but not both. |
no outgoing calls