elliotchance / concise

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

describe() for assertions #315

Open elliotchance opened 8 years ago

elliotchance commented 8 years ago
$this->describe("a must be greater than b")
  ->assert(3)->isGreaterThan(0);

Instead of:

$this->assert("a must be greater than b", 3)->isGreaterThan(0);