-
I wondered if it would be a good idea to create the null asserter to test null variable instead of using variable then isNull.
``` php
$this
->null($myNullVariable)
;
// instead of
$this
->…
-
I looked at this, we should use tags in Atoum and ignore all tests tagged "dev".
We should run Atoum through a bootstrap file and then define witch tags we want to run.
-
Pointers:
http://docs.travis-ci.com/user/getting-started/
http://docs.travis-ci.com/user/languages/php/
Travis CI supports Atoum, it would be nice to have our unit tests ran on all pull requests.
-
Hi,
`$asserter = new \mageekguy\atoum\asserter\generator();`
`$asserter->phpArray(...)` return exceptions:
`Asserter phpArray does not exist` because of this line https://github.com/atoum/atoum/bl…
-
Hi,
since the documentation was not up to date and I don't follow recent features of atoum, I would like to know if it is always not possible to test a protected method directly or via a mock or via …
-
This issue is very similar to https://github.com/atoum/atoum/issues/171.
We (NetBeans IDE) are currently thinking about nette/tester support [1] - but there are several things that would need to be d…
-
excusez ma noobitude mais je n'arrive pas à builder un projet avec un .travis.yml
j'ai bien pull les images jolicode/php54 etc ...
je me mange un
```
[GuzzleHttp\Exception\ServerException] …
-
``` php
use
mageekguy\atoum,
mageekguy\atoum\exceptions
;
use mageekguy\atoum;
use mageekguy\atoum\exceptions;
```
becomes
``` php
use{
mageekguy\atoum,
mageekguy\atoum\exceptions
}…
-
From [mageekguy\atoum\asserters#L486}(https://github.com/atoum/atoum/blob/master/classes/asserters/phpArray.php#L486)
I think the problem comes from https://github.com/atoum/atoum/blob/master/classes…
-
hi,
"full" netbeans compatibility seems to be broken
atoum version on sample : f50b8db
atoum current version : 45dbd79
at each test, results window show an "[0,00%] No tests executed".
I think per…