concise
concise copied to clipboard
✅ Concise is test framework for using plain English and minimal code, built on PHPUnit.
http://phpunit.de/manual/4.1/en/appendixes.assertions.html
http://phpunit.de/manual/4.1/en/appendixes.assertions.html#appendixes.assertions.assertClassHasAttribute
It seems common for the backtraces to have a lot of unknown files and line. We know the objects so maybe we can use reflection to look up where they...
`url ?:string has parameter ?:string with value ?`
PHPUnit does not support this and its very annoying: ``` bash concise MyTest.php MyOtherTest.php ```
PHPUnit supports limiting a test case to whole seconds, but 1 second is a very long time in unit testing. It would be nice if we would set (even soft...
For example `a7b0deb1-32bd-4da8-91a6-e5875bb0d401`
Any property should try and call a method with the same name: ``` php $this->mock('CustomerEntity')->disableConstuctor()->done(); ``` Will work the same as: ``` php $this->mock('CustomerEntity')->disableConstuctor->done; ```