| 41 | // --------------------------------------------------------------------------- |
| 42 | |
| 43 | TEST(metadata, citation) { |
| 44 | Citation c("my citation"); |
| 45 | Citation c2(c); |
| 46 | ASSERT_TRUE(c2.title().has_value()); |
| 47 | ASSERT_EQ(*(c2.title()), "my citation"); |
| 48 | } |
| 49 | |
| 50 | // --------------------------------------------------------------------------- |
| 51 |
nothing calls this directly
no test coverage detected