Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. /**
  3. * @test
  4. */
  5. public function ProductionLogicProblem()
  6. {
  7. $user = 'Marek';
  8. $greeting = 'Witaj, ';
  9. $actual = $messageBuilder->build($greeting, $user);
  10.  
  11. $this->assertEquals($greeting . $user, $actual);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement