CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
value_test.py
Go to the documentation of this file.
1 import unittest
2 import math
3 from value import Value
4 
5 class ValueTestCase(unittest.TestCase):
6 
7  def test(self):
8  val1 = Value(1.,0.02)
9  val2 = Value(2.,0.02)
10  val3 = val1 / val2
11  # should test the value and the error after each operation.
12  # I'll write the tests when I have some time
13 
14  def test_equal(self):
15  val1 = Value(1.,0.02)
16  val2 = Value(1.,0.02)
17  self.assertEqual(val1, val2)
18 
19 if __name__ == '__main__':
20  unittest.main()