Mathematics
Algorithms
Logic
Numbers
// PHPUnit Test Examples: // TODO: Replace examples and use TDD development by writing your own tests class MyTestCases extends TestCase { // test function names should start with "test" public function testThatSomethingShouldHappen() { $this->assertEquals("a", "a"); $this->assertEquals([0], [0]); } }
- // PHPUnit Test Examples:
- // TODO: Replace examples and use TDD development by writing your own tests
- class MyTestCases extends TestCase
- {
- // test function names should start with "test"
- public function testThatSomethingShouldHappen() {
- $this->assertEquals("a", "a");
- $this->assertEquals([0], [0]);
- }
- }