$ limb_unit --methods=testFoo,testBar mytest.php
If mytest.php has the following contents:
- Код: Выделить всё
class MyTest extends UnitTestCase
{
function testFoo(){...}
function testBar(){...}
function testWow(){...}
}
...only testFoo and testBar methods will be executed
