Nag_TestCase::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        $this->markTestIncomplete('Needs some love');
    }

Usage Example

Example #1
0
 public function setUp()
 {
     parent::setUp();
     $error = self::$setup->getError();
     if (!empty($error)) {
         $this->markTestSkipped($error);
     }
 }
All Usage Examples Of Nag_TestCase::setUp