Skip to content

Instantly share code, notes, and snippets.

@MacDada
Created June 11, 2014 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MacDada/b8a3d48c6682e13ae86e to your computer and use it in GitHub Desktop.
Save MacDada/b8a3d48c6682e13ae86e to your computer and use it in GitHub Desktop.
<?php
return
[
'It is initializable' => function ()
{
$this->shouldHaveType('StringCalculator');
},
'It requires string input' => function ()
{
$this->shouldThrow('\InvalidArgumentException')->during('add', [null]);
},
'It adds 2 numbers separated by comma' => function ()
{
$this->add('1,2')->shouldReturn(3);
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment