Skip to content

Instantly share code, notes, and snippets.

@jdecool
Created July 18, 2014 16:49
Show Gist options
  • Save jdecool/4f76ea51ba38192db9f4 to your computer and use it in GitHub Desktop.
Save jdecool/4f76ea51ba38192db9f4 to your computer and use it in GitHub Desktop.
PHPUnit
<?php
namespace tests;
class BattleTest extends \PHPUnit_Framework_TestCase
{
public function testMethods()
{
$this->assertEquals('1', 1); // true
$this->assertLessThan('1', 0); // true
$this->assertLessThan(-1, null); // true
$this->assertSame('1', 1); // false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment