class calc {
public function add($a,$b) {
return $this->$a+$b;
}
}
Генерирую для него юнит тесты
class calcTest extends PHPUnit_Framework_TestCase {Запускаю его и в итоге пишется
/**
* @var calc
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp() {
$this->object = new calc;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown() {
}
/**
* @covers calc::add
* @todo Implement testAdd().
*/
public function testAdd() {
// Remove the following lines when you implement this test.
$this->assertEquals(4,
$this->object->add(2, 2));
}
}
}
Не было выполнено ни одного теста. Откройте окно результатов для просмотра всех выходных данных
Я уже не знаю что тут делать :(