function testDeleteStore() { //Arrange $store_name = "Portland Running Company"; $id = 1; $test_store = new Store($store_name, $id); $test_store->save(); $store_name2 = "New Balance"; $id2 = 2; $test_store2 = new Store($store_name, $id2); $test_store2->save(); //Act $test_store->deleteOne(); //Assert $this->assertEquals([$test_store2], Store::getAll()); }
function testDeleteOne() { $store_name = "Beacons Closet"; $new_store = new Store($store_name); $new_store->save(); $store_name2 = "Buffalo Exchange"; $new_store2 = new Store($store_name); $new_store2->save(); $new_store->deleteOne(); $result = Store::getAll(); $this->assertEquals($new_store2, $result[0]); }