소스 검색

poorly written test fixed

devel
Ludovic 'Archivist' Lagouardette 4 년 전
부모
커밋
7bbdf7b2fc
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -3
      tests/pair_test.cpp

+ 1
- 3
tests/pair_test.cpp 파일 보기

@ -17,7 +17,6 @@ struct pair_test : public test_scaffold {
virtual int run() {
cheap_rand setter(seed);
cheap_rand getter(seed);
gp::pair<double, std::string> v{0, "zero"};
bool result = true;
@ -25,9 +24,8 @@ struct pair_test : public test_scaffold {
for(int i = 0 ; i < 100; i++)
{
auto a = setter();
auto b = setter();
v = gp::pair(a, std::to_string(a));
result = gp::pair<double, std::string>(b, std::to_string(b)) == v ? result : false;
result = gp::pair<double, std::string>(a, std::to_string(a)) == v ? result : false;
}
return !result;

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