Skip to content

Instantly share code, notes, and snippets.

@maks-rafalko
Created October 11, 2017 19:45
Show Gist options
  • Save maks-rafalko/432df65ec6104b75a47dcfd44670ee90 to your computer and use it in GitHub Desktop.
Save maks-rafalko/432df65ec6104b75a47dcfd44670ee90 to your computer and use it in GitHub Desktop.
<?php
public function test_it_filters_adults()
{
$filter = new UserFilterAge();
$users = [
['age' => 20],
['age' => 15],
];
$this->assertCount(1, $filter($users));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment