Skip to content

Instantly share code, notes, and snippets.

@hanneskaeufler
Created December 2, 2017 16:51
Show Gist options
  • Save hanneskaeufler/1ad425f9e57c0a1f85c71fbf72dbff9d to your computer and use it in GitHub Desktop.
Save hanneskaeufler/1ad425f9e57c0a1f85c71fbf72dbff9d to your computer and use it in GitHub Desktop.
Sample A
<?php
public function test_it_sets_the_full_name() {
$subject = new User();
$name = "Peter";
$subject->setFirstname($name);
$this->assertEquals($name, $subject->getFirstname());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment