Ejemplo n.º 1
0
 public function testGetAllIds()
 {
     $p = new Project($this->container);
     $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
     $this->assertEmpty($p->getAllByIds(array()));
     $this->assertNotEmpty($p->getAllByIds(array(1, 2)));
     $this->assertCount(1, $p->getAllByIds(array(1)));
 }