someStaticMethod() 공개 정적인 메소드

public static someStaticMethod ( ) : string
리턴 string
 /**
  * @test
  */
 public function staticMethodsCannotBeAdvised()
 {
     $targetClass01 = new Fixtures\TargetClass01();
     $this->assertSame('I won\'t take any advice', $targetClass01->someStaticMethod());
 }