Scientist\Experiment::getLaboratory PHP Method

getLaboratory() public method

Retrieve the laboratory instance.
public getLaboratory ( ) : Laboratory | null
return Laboratory | null
    public function getLaboratory()
    {
        return $this->laboratory;
    }

Usage Example

Example #1
0
 public function test_that_an_experiment_laboratory_can_be_set()
 {
     $l = new Laboratory();
     $e = new Experiment('test experiment', $l);
     $this->assertInstanceOf('\\Scientist\\Laboratory', $e->getLaboratory());
     $this->assertSame($l, $e->getLaboratory());
 }
All Usage Examples Of Scientist\Experiment::getLaboratory