Beispiel #1
0
 function test_updateName()
 {
     $name = "Foot Locker";
     $test_store = new Store($name, $id);
     $test_store->save();
     $new_name = "Foot Action";
     $test_store->updateName($new_name);
     $this->assertEquals("Foot Action", $test_store->getName());
 }
Beispiel #2
0
 function testUpdate()
 {
     $name = "Foot and feet";
     $test_store = new Store($name);
     $test_store->save();
     $new_name = "Foot peddler";
     $test_store->updateName($new_name);
     $this->assertEquals($new_name, $test_store->getName());
 }
Beispiel #3
0
 function testUpdateName()
 {
     //Arrange
     $store_name = "bobs shoe store ";
     $test_store = new Store($store_name);
     $test_store->save();
     $store_name2 = "nike store";
     //Act
     $test_store->updateName($store_name2);
     //Assert
     $this->assertEquals("nike store", $test_store->getName());
 }
Beispiel #4
0
 function testUpdateName()
 {
     //Arrange
     $store_name = "Shoe World";
     $test_store = new Store($store_name);
     $test_store->save();
     $store_name2 = "Shoe Depot";
     //Act
     $test_store->updateName($store_name2);
     //Assert
     $this->assertEquals("Shoe Depot", $test_store->getName());
 }
Beispiel #5
0
 function testUpdateName()
 {
     //Arrange
     $name = "shoe store";
     $location = "1234 nw 1st street";
     $id = 4;
     $test_store = new Store($name, $location, $id);
     $test_store->save();
     $new_name = "New Store";
     //Act
     $test_store->updateName($new_name);
     $result = $test_store->getName();
     //Assert
     $this->assertEquals($new_name, $result);
 }
Beispiel #6
0
 function test_updateName()
 {
     //Arrange
     $name = "House of Shoes and Waffles";
     $address = "123 Street";
     $phone = "4-44";
     $test_store = new Store($name, $address, $phone);
     $test_store->save();
     // Act
     $new_name = "Bob's Shoe Palace";
     $test_store->updateName($new_name);
     //Assert
     $this->assertEquals($new_name, $test_store->getName());
 }
Beispiel #7
0
 function testUpdateName()
 {
     //arrange
     $name = "Store1";
     $id = 1;
     $test_store = new Store($name, $id);
     $test_store->save();
     $new_name = "Store2";
     //act
     $test_store->updateName($new_name);
     //arrange
     $this->assertEquals("Store2", $test_store->getName());
 }
Beispiel #8
0
 function test_updateName()
 {
     //Arrange
     $name = "Burchs";
     $location = "Oakway Center";
     $phone = "5415131122";
     $test_store = new Store($name, $location, $phone);
     $test_store->save();
     //Act
     $new_name = "Shoe Emporium";
     $test_store->updateName($new_name);
     //Assert
     $result = Store::getAll();
     $this->assertEquals($new_name, $result[0]->getName());
 }