Skip to content

Instantly share code, notes, and snippets.

@event15
Created January 14, 2016 19:15
Show Gist options
  • Save event15/ce12281bfad17e8ace7d to your computer and use it in GitHub Desktop.
Save event15/ce12281bfad17e8ace7d to your computer and use it in GitHub Desktop.
Dodano testy dla liczb: 2, 3
<?php
public function it_returns_2_for_2()
{
$this->factorize(2)->shouldReturn([2]);
}
public function it_returns_3_for_3()
{
$this->factorize(3)->shouldReturn([3]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment