Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added unit tests for checking if data within a map exists.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Fri, 25 Mar 2016 10:17:44 +0000 (10:17 +0000)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Fri, 25 Mar 2016 10:17:44 +0000 (10:17 +0000)
source/tests/xestiaab_common.h

index 3f8b803..d55063c 100644 (file)
@@ -339,4 +339,49 @@ TEST(CommonFunctions, MapDataExists){
 
        // Tests for checking that map data exists.
 
+       std::map<int,int> MapExample;
+       int ItemIndex = 0;
+
+       MapExample.insert(std::make_pair(0,1));
+       MapExample.insert(std::make_pair(1,1));
+       MapExample.insert(std::make_pair(2,1));
+       MapExample.insert(std::make_pair(5,1));
+       MapExample.insert(std::make_pair(500,1));
+       MapExample.insert(std::make_pair(2415,1));
+
+       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 1;
+       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 2;
+       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 3;
+       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 5;
+       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 6;
+       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 499;
+       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 500;
+       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 501;
+       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 2414;
+       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 2415;
+       ASSERT_EQ(true, MapDataExists(&ItemIndex, &MapExample));
+
+       ItemIndex = 2416;
+       ASSERT_EQ(false, MapDataExists(&ItemIndex, &MapExample));
+
 }
\ No newline at end of file
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy