def test_check_equality(self):
        with self.subTest('check being equal'):
            i_4_1 = PurelyImaginaryNumber(MyInt(4))
            i_4_2 = PurelyImaginaryNumber(MyInt(4))
            self.assertTrue(i_4_1 == i_4_2)

        with self.subTest('check not being equal'):
            i_4 = PurelyImaginaryNumber(MyInt(4))
            i_2 = PurelyImaginaryNumber(MyInt(2))
            self.assertFalse(i_4 == i_2)
    def test_conjugate(self):
        with self.subTest('check 4'):
            i_4 = PurelyImaginaryNumber(MyInt(4))
            minus_i_4 = PurelyImaginaryNumber(MyInt(-4))
            self.assertTrue(i_4.is_conjugate_to(minus_i_4))

        with self.subTest('check 1'):
            i_1 = PurelyImaginaryNumber(MyInt(1))
            minus_i_1 = PurelyImaginaryNumber(MyInt(-1))
            self.assertTrue(i_1.is_conjugate_to(minus_i_1))
示例#3
0
    def test_check_equality(self):
        with self.subTest('check being equal'):
            i2_4_1 = ImaginaryNumber(2, MyInt(4))
            i2_4_2 = ImaginaryNumber(2, MyInt(4))
            self.assertTrue(i2_4_1 == i2_4_2)

        with self.subTest('check not being equal'):
            i2_4 = ImaginaryNumber(2, MyInt(4))
            i2_2 = ImaginaryNumber(2, MyInt(2))
            self.assertFalse(i2_4 == i2_2)
    def test_purely_imaginary_number(self):
        with self.subTest('create 4i'):
            i_4 = PurelyImaginaryNumber(MyInt(4))
            expected = '4i'
            actual = str(i_4)
            self.assertEqual(expected, actual)

        with self.subTest('create -2i'):
            minus_i_2 = PurelyImaginaryNumber(MyInt(-2))
            expected = '-2i'
            actual = str(minus_i_2)
            self.assertEqual(expected, actual)
    def test_purely_imaginary_number_with_1(self):
        with self.subTest('create i'):
            i_1 = PurelyImaginaryNumber(MyInt(1))
            expected = 'i'
            actual = str(i_1)
            self.assertEqual(expected, actual)

        with self.subTest('create -i'):
            minus_i_1 = PurelyImaginaryNumber(MyInt(-1))
            expected = '-i'
            actual = str(minus_i_1)
            self.assertEqual(expected, actual)
示例#6
0
    def test_create_imaginary_number(self):
        with self.subTest('2 + 4i'):
            i2_4 = ImaginaryNumber(2, MyInt(4))
            expected = '2 + 4i'
            actual = str(i2_4)
            self.assertEqual(expected, actual)

        with self.subTest('2 - 4i'):
            i2_minus4 = ImaginaryNumber(2, MyInt(-4))
            expected = '2 - 4i'
            actual = str(i2_minus4)
            self.assertEqual(expected, actual)

        with self.subTest('0 + 4i'):
            i0_4 = ImaginaryNumber(0, MyInt(4))
            expected = '4i'
            actual = str(i0_4)
            self.assertEqual(expected, actual)
 def test_raise_zero_error(self):
     with self.assertRaises(ValueError):
         PurelyImaginaryNumber(MyInt(0))
示例#8
0
 def test_invalid_0(self):
     with self.assertRaises(ValueError):
         MyInt(0)