Пример #1
0
 def test_inital_all_attributes(
         self):  # test constructor with all valid input
     customer = t.Customer(1234, 'Duck', 'Daisy', '111-111-1111')
     assert customer.customer_id == 1234
     assert customer.last_name == 'Duck'
     assert customer.first_name == 'Daisy'
     assert customer.phone_number == '111-111-1111'
Пример #2
0
 def test_object_not_created_error_phone_number(self):
     with self.assertRaises(InvalidPhoneNumberFormat):
         p = t.Customer(1234, 'Duck', 'Daisy', '(515)555-5555')
         d = t.Customer(1234, 'Duck', 'Daisy', '5155555555')
         q = t.Customer(1234, 'Duck', 'Daisy', '1(515)555-5555')
         b = t.Customer(1234, 'Duck', 'Daisy', '(ABC)555-5555')
Пример #3
0
 def test_object_not_created_error_customer_id(self):
     with self.assertRaises(InvalidCustomerIDException):
         p = t.Customer(12345, 'Duck', 'Daisy', '515-555-5555')
Пример #4
0
 def test_object_not_created_error_fist_name(self):
     with self.assertRaises(InvalidNameException):
         c = t.Customer(1234, 'Duck', '515', '111-111-1111')
Пример #5
0
 def setUp(self):
     self.customer = t.Customer(1234, "Meeker", "Daniel", "319-560-2402")