updated_date=datetime.date(2018, 2, 1)),
     Customer(name='TestCustomer 3',
              created_date=datetime.date(2018, 3, 1),
              updated_date=datetime.date(2018, 3, 1)),
     Customer(name='TestCustomer 4',
              created_date=datetime.date(2018, 4, 1),
              updated_date=datetime.date(2018, 4, 1)),
     Customer(name='TestCustomer 5',
              created_date=datetime.date(2018, 4, 1),
              updated_date=datetime.date(2018, 4, 1)),
     Customer(name='TestCustomer 6',
              created_date=datetime.date(2018, 5, 1),
              updated_date=datetime.date(2018, 5, 1))
 ]
 DBConfig = dbConfig()
 dbConnection = DBConnection(DBConfig.host, DBConfig.user,
                             DBConfig.password, DBConfig.dbName)
 dbConnection.connect()
 connection = dbConnection.get_connection()
 if connection is not None:
     print("Connected")
     dbPopulate = DBPopulate(connection)
     dbPopulate.populate_country('New Zealand')
     dbPopulate.populate_customer_type('TestCustomer')
     dbPopulate.populate_sales_channel(0x0, "sales channel 1")
     dbPopulate.populate_product_category("Description of product category",
                                          "product_category 1")
     dbPopulate.populate_region('New Zealand', 'Manawatu')
     dbPopulate.populate_kiosk('Manawatu', "UnitTest", "my_api_key")
     for customer in customers:
         dbPopulate.populate_customer('UnitTest', "TestCustomer",
                                      customer.name, customer.created_date,