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