Example #1
0
 public function testHasPackage()
 {
     $repo = new ArrayRepository();
     $repo->addPackage($this->getPackage('foo', '1'));
     $repo->addPackage($this->getPackage('bar', '2'));
     $this->assertTrue($repo->hasPackage($this->getPackage('foo', '1')));
     $this->assertFalse($repo->hasPackage($this->getPackage('bar', '1')));
 }