elliotchance / concise

✅ Concise is test framework for using plain English and minimal code, built on PHPUnit.
MIT License
45 stars 3 forks source link

Invocation::getArgument() with named arguments #272

Open elliotchance opened 9 years ago

elliotchance commented 9 years ago
            ->expect('post')->andDo(
                function (Invocation $i) {
                    $this->assert($i->getArgument('argName'), equals, 1);
                }
            )