Reputation: 555
I've created a C++ project in CLion with support for Google Tests (based on a starter project available here).
I can run tests as expected, with the exception that they don't show up in the hierarchical tree view of the test runner:
What I would expect to see is the test suite name (InputOutputTestSuite
) as a node, with the tests (CanReadAndWriteEmptyBoard
, CanReadAndWriteKingBoard
) in it as children. My test suite looks like this:
And I'm using a Google Test run configuration to run all test suites and all tests:
Any ideas why the tree view is not working?
UPDATE: The tree view shows only failed tests, by the look of it:
Upvotes: 1
Views: 900