Beispiel #1
0
 /**
  * tests the bar function
  */
 public function testFoo()
 {
     $this->assertEquals("foo", MyMavenTestClass::getFoo());
 }
Beispiel #2
0
 /**
  * tests the bar function
  */
 public function testFoo()
 {
     include "MyClass.php";
     $o = new MyMavenTestClass();
     $this->assertEquals("foo", $o->getFoo());
 }
Beispiel #3
0
 /**
  * tests the bar function
  */
 public function testFoo()
 {
     include "MyClass.php";
     $this->assertEquals("bar", MyMavenTestClass::getFoo());
 }
Beispiel #4
0
 /**
  * tests the bar function
  */
 public function testFoo()
 {
     include __DIR__ . "/MyClass.php";
     $this->assertEquals("foo", MyMavenTestClass::getFoo());
 }