X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;ds=sidebyside;f=source%2Ftests%2Fxestiaab_common.h;h=d55063ca30fed20fb42376c3597b596b18f8a417;hb=093ec0e38eb672fea6e2572978fbd15aa0bfc40c;hp=3f8b803eeae81e5fe0d56bfdac52eb7fa074dd08;hpb=a776c519f9846a8d0f2b1b9241e10b3101ad7296;p=xestiaab%2F.git diff --git a/source/tests/xestiaab_common.h b/source/tests/xestiaab_common.h index 3f8b803..d55063c 100644 --- a/source/tests/xestiaab_common.h +++ b/source/tests/xestiaab_common.h @@ -339,4 +339,49 @@ TEST(CommonFunctions, MapDataExists){ // Tests for checking that map data exists. + std::map 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