Sfoglia il codice sorgente

test: speed up the Map unit test.

legacy
Sam Hocevar sam 11 anni fa
parent
commit
13d3c9d828
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +3
    -3
      test/unit/map.cpp

+ 3
- 3
test/unit/map.cpp Vedi File

@@ -36,13 +36,13 @@ LOLUNIT_FIXTURE(MapTest)
{
Map<int, int> map;

for (int i = 0; i < 100000; i++)
for (int i = 0; i < 1000; i++)
map[i] = -1;

for (int i = 0; i < 100000; i++)
for (int i = 0; i < 1000; i++)
map[i] = i;

for (int i = 0; i < 100000; i++)
for (int i = 0; i < 1000; i++)
LOLUNIT_ASSERT_EQUAL(map[i], i);
}



Caricamento…
Annulla
Salva