From f6473422280df18da051151ed38acdb938c5f796 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Mon, 27 Apr 2015 01:36:32 +0200 Subject: [PATCH] TODOs --- test/implementations/caching/QueueMapTest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/implementations/caching/QueueMapTest.cpp b/test/implementations/caching/QueueMapTest.cpp index 90447d0a..37dc300a 100644 --- a/test/implementations/caching/QueueMapTest.cpp +++ b/test/implementations/caching/QueueMapTest.cpp @@ -135,3 +135,5 @@ TEST_F(QueueMapTest, Size_AfterPushingOnePoppingOnePerKeyPushingSame) { //TODO Popping from empty //TODO Popping invalid key //TODO Test that in all cases, destructors of Value are called correctly in QueueMap when [a] pop() [b] pop(key) [c] ~QueueMap() +//TODO Test that pushing and popping a copy-and-move-constructible object only called 1 copy constructor +//TODO Test that pushing and popping doesn't invalidate objects (e.g, calls too many destructors)