Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 376 Bytes

07-02-19-unit-tests.md

File metadata and controls

30 lines (21 loc) · 376 Bytes
title isChild anchor
Unit Testing
true
unit-testing

Unit Testing {#unit-testing}

Methods in test classes MUST start with "test" then a camelCased name of the test

Good

class ExampleTest extends TestCase
{
    public function testBasicTest()
    {

Bad

class ExampleTest extends TestCase
{
    public function test_basic_test()
    {