Recently davertMik had announced an addition to Codeception framework that allows BDD style unit test. Pretty nice like this
$this->specify('post can be published', function() {
$this->post->setTitle('Testing is Fun!');
$this->post->setBody('Thats for sure');
expect_that($this->post->publish());
});
Two new additional libraries introduced for this Specify and Verify
Read more ...