| 13 | using namespace p2c::gfx::lay; |
| 14 | |
| 15 | TEST_CLASS(TestExtremeQueue) |
| 16 | { |
| 17 | public: |
| 18 | TEST_METHOD(MaxAddEmpty) |
| 19 | { |
| 20 | MaxQueue q; |
| 21 | q.Push(10.f); |
| 22 | Assert::AreEqual(10.f, *q.GetCurrent()); |
| 23 | q.Pop(10.f); |
| 24 | Assert::IsTrue(q.Empty()); |
| 25 | } |
| 26 | TEST_METHOD(MaxAddToBack) |
| 27 | { |
| 28 | MaxQueue q; |
nothing calls this directly
no test coverage detected