Ejemplo n.º 1
0
 public function testResourceBuilding()
 {
     $session = $this->sut->resource('Session');
     $this->assertInstanceOf('\\Vdbf\\Components\\Twinfield\\Resource\\Session', $session);
     //try to build a non-existent resource
     $this->setExpectedException('\\Vdbf\\Components\\Twinfield\\Exception\\UnknownResource');
     $this->sut->resource('NonExistent');
 }