Example #1
0
 public function test_replace()
 {
     $collection = new Collection();
     $collection['test'] = TRUE;
     $collection->replace(['test' => FALSE]);
     $this->assertFalse((bool) $collection->get('test'));
 }