Skip to content

Instantly share code, notes, and snippets.

@craig-davis
Last active April 27, 2020 01:38
Show Gist options
  • Save craig-davis/d2814939cc3b1b07931788b99d9e83eb to your computer and use it in GitHub Desktop.
Save craig-davis/d2814939cc3b1b07931788b99d9e83eb to your computer and use it in GitHub Desktop.
PHPUnit Assertion with Message
<?php
public function testAuthorHasPostsArray()
{
self::assertIsArray(
(new Author())->getPosts(),
'Author should have an accessible array of posts'
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment