class TestClass extends PHPUnit_Framework_TestCase {
function testSomething() {
$class = new Class();
$this->assertTrue($class->someFunc(1));
}
function testSomethingAgain() {
$class = new Class();
$this->assertFalse($class->someFunc(0));
}
}
Ciao, devo davvero creare $ classe per ogni funzione di test che creo? O c'è una funzione simile al costruttore sconosciuta che devo ancora scoprire, poiché i costruttori non sembrano funzionare in PHPUnit.Come impostare o costruire un test dell'unità PHP
Grazie
Grazie! needs15characterstocommentwtf – lemon