소스 검색

test: speed up the Map unit test.

legacy
Sam Hocevar sam 11 년 전
부모
커밋
13d3c9d828
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      test/unit/map.cpp

+ 3
- 3
test/unit/map.cpp 파일 보기

@@ -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);
}



불러오는 중...
취소
저장