protected function clearOneObjectFromCache($key)
 {
     $this->collection->deleteOne(['_id' => $key]);
     return true;
 }
Example #2
0
 function testDelete()
 {
     //Arrange
     $stylist_name = "Allison";
     $id = null;
     $test_stylist = new Stylist($stylist_name, $id);
     $test_stylist->save();
     $stylist_id = $test_stylist->getId();
     $client_name = "Paco";
     $test_client = new Client($client_name, $id, $stylist_id);
     $test_client->save();
     //Act
     $test_client->deleteOne();
     //Assert
     $this->assertEquals([], Client::getAll());
 }