public function testExistShouldReturnTrueIfKeyExist()
 {
     $collection = new Collection();
     $collection->add('A', 1);
     $collection->add(2, 'B');
     $this->assertTrue($collection->exist(2));
     $this->assertTrue($collection->exist('A'));
 }