NOLINTBEGIN(cppcoreguidelines-*,readability-*)
| 24 | |
| 25 | // NOLINTBEGIN(cppcoreguidelines-*,readability-*) |
| 26 | TEST(UniqueNameManager, NonconflictingBaseNameReturnsSameName) |
| 27 | { |
| 28 | // Check that a model name that is a base name that does not conflict with |
| 29 | // any existing name returns the base name |
| 30 | EXPECT_EQ(Base::UniqueNameManager().makeUniqueName("Body"), "Body"); |
| 31 | } |
| 32 | |
| 33 | TEST(UniqueNameManager, NonconflictingUniqueNameReturnsBaseName) |
| 34 | { |
nothing calls this directly
no test coverage detected