Se sono corretto, SimpleTest ti consentirà di affermare un errore PHP. Tuttavia, non riesco a capire come usarlo, in base alla documentazione. Voglio affermare che l'oggetto passo nel mio costruttore è un esempio di MyOtherObject
SimpleTest: come affermare che viene generato un errore PHP?
class Object {
public function __construct(MyOtherObject $object) {
//do something with $object
}
}
//...and in my test I have...
public function testConstruct_ExpectsAnInstanceOfMyOtherObject() {
$notAnObject = 'foobar';
$object = new Object($notAnObject);
$this->expectError($object);
}
Dove sto andando male?
Non ho verificato questo, quindi presumo solo che sia vero. Grazie per la tua risposta! – Andrew