Skip to content

Instantly share code, notes, and snippets.

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