Beispiel #1
0
 def test_add1(self):
     print("测试两个整数函数")
     c1 = Count(10,20)
     res1 = c1.add()
     print("计算实际结果:",res1)
 # 步骤5:使用unittest 提供的断言函数
     self.assertEqual(res1,30)
Beispiel #2
0
 def test_add2(self):
     print("测试两个浮点型数据函数")
     c2 = Count(2167.45, 3978.78)
     res2 = c2.add()
     print("计算实际结果:", res2)
     if abs(res2 - 6146.23) < 0.001:
         res2 = 6146.23
     self.assertEqual(res2, 6146.23)
Beispiel #3
0
 def test_add3(self):
     print("测试两个字符串函数")
     c3 = Count("你好", "测试")
     res3 = c3.add()
     print("实际计算结果:", res3)
     self.assertEqual(res3, "你好测试")
Beispiel #4
0
from day04.day0401.calculator import Count

mytest = Count(10.56, 23.43)
res2 = mytest.add()
if abs(res2 - 33.99) <= 0.001:
    print("计算正确!")
else:
    print("计算错误")
print("计算实际结果:", res2)