Scientist\Report::getName PHP 메소드

getName() 공개 메소드

Get the experiment name.
public getName ( ) : string
리턴 string
    public function getName()
    {
        return $this->name;
    }

Usage Example

예제 #1
0
 public function test_that_report_can_hold_experiment_name()
 {
     $r = new Result();
     $rp = new Report('foo', $r, []);
     $this->assertEquals('foo', $rp->getName());
 }
All Usage Examples Of Scientist\Report::getName