Renaud LITTOLFF
Renaud LITTOLFF
I had this error messages: ``` ✘ should return reminders sms (../Bundles/Befull/BillingBundle/Tests/Units/Befull/BillingBundle/Manager/ProductManager.php:476) 2: Invalid argument supplied for foreach() File: /media/data/dev/befull/Bundles/Befull/BillingBundle/Tests/Units/Befull/BillingBundle/Manager/ProductManager.php Line: 517 ``` But I don't find error. In atoum/bdd-extension/classes/report/fields/spec/event/fails/error.php...
atoum: 2.8.2 php: 7.0.13 If I use `$this->newTestedInstance()` in `beforeTestMethod()` function, I have the folowing error message: `Asserter 'newTestedInstance' does not exist` Is it a normal behavior ? And why...
Hi, is it possible to close a given node by its ID ?
I can't write this code: ``` js this .given(o = new MyObject()) .and(o.setSomething(myCallback = this.generateCallback())) .if(o.doSomething()) .callback(myCallback) .wasCalled() .if(o.doOtherThing()) .callback(myCallback) .wasNotCalled() ``` Because, in the second test, the callback was...
IMHO, you should fire a mention AND a message event and maybe specify when a message is a mentionned message, too.
For now, the only way to add commands in Client::_run is to extends this method, reparse message and call parent for base message. Please provide a simple way to add...
For my new project, I use Symfony 2.5 and I choose the new directory structure (http://stackoverflow.com/questions/23993295/what-is-the-new-symfony-3-directory-structure#23994473) Unfortunatly, when I launch AtoumBundle tests, app/cache and app/config was created.
Is it possible to provide a shortcut to router `$this->getKernel()->getContainer()->get('router')` or directly to generate method ? We could do something like this: ``` $this->GET($this->generateUrl('my_route', uniqid())) ```