| 8 | #include "shaders/Utils.hpp" |
| 9 | |
| 10 | TEST(TestSequence, SequenceDestructorViaManager) |
| 11 | { |
| 12 | std::shared_ptr<kp::Sequence> sq = nullptr; |
| 13 | |
| 14 | { |
| 15 | kp::Manager mgr; |
| 16 | |
| 17 | sq = mgr.sequence(); |
| 18 | |
| 19 | EXPECT_TRUE(sq->isInit()); |
| 20 | } |
| 21 | |
| 22 | EXPECT_FALSE(sq->isInit()); |
| 23 | } |
| 24 | |
| 25 | TEST(TestSequence, SequenceDestructorOutsideManagerExplicit) |
| 26 | { |
nothing calls this directly
no test coverage detected