|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // Lol Engine
- //
- // Copyright: (c) 2010-2012 Sam Hocevar <sam@hocevar.net>
- // This program is free software; you can redistribute it and/or
- // modify it under the terms of the Do What The Fuck You Want To
- // Public License, Version 2, as published by Sam Hocevar. See
- // http://www.wtfpl.net/ for more details.
- //
-
- #if defined HAVE_CONFIG_H
- # include "config.h"
- #endif
-
- #include "core.h"
- #include "lol/unit.h"
-
- namespace lol
- {
-
- LOLUNIT_FIXTURE(MapTest)
- {
- void SetUp() {}
-
- void TearDown() {}
-
- LOLUNIT_TEST(MapDeclare)
- {
- Map<uint8_t, uint8_t> m1;
- Map<int, int> m2;
- Map<float, float> m3;
- Map<char const *, char const *> m4;
- }
-
- LOLUNIT_TEST(MapSet)
- {
- Map<int, int> map;
-
- for (int i = 0; i < 100000; i++)
- map[i] = -1;
-
- for (int i = 0; i < 100000; i++)
- map[i] = i;
-
- for (int i = 0; i < 100000; i++)
- LOLUNIT_ASSERT_EQUAL(map[i], i);
- }
-
- LOLUNIT_TEST(MapHasKey)
- {
- Map<int, int> map;
-
- map[0] = 1;
- map[2] = 2;
-
- LOLUNIT_ASSERT(map.HasKey(0));
- LOLUNIT_ASSERT(!map.HasKey(1));
- LOLUNIT_ASSERT(map.HasKey(2));
- }
- };
-
- } /* namespace lol */
-
|