function test_getAll() { $test_name = "Nordstrom"; $test_id = 1; $test_store = new Store($test_name, $test_id); $test_store->save(); $test_name2 = "Bloomingdales"; $test_id2 = 2; $test_store2 = new Store($test_name2, $test_id2); $test_store2->save(); $result = store::getAll(); $this->assertEquals([$test_store, $test_store2], $result); }