소스 검색

Extended tests for Integer class

- added another assignment (copy) call
Patrick 4 년 전
부모
커밋
6ed6388c6b
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      test/cases/boxing/IntegerTest.cpp

+ 4 - 0
test/cases/boxing/IntegerTest.cpp

@@ -33,6 +33,10 @@ namespace {
 
     x = 44;
     ASSERT_EQ(44, x);
+
+    ls_std::Integer y {3};
+    x = y;
+    ASSERT_EQ(3, x);
   }
 
   // arithmetic operators