tests/ExampleTest.php
<?php namespace renepenner\MageTools\Tests; class ExampleTest extends \PHPUnit_Framework_TestCase{ public function testExample() { // ArrangeAvoid variables with short names like $a. Configured minimum length is 3. $a = true; // ActAvoid variables with short names like $b. Configured minimum length is 3. $b = $a; // Assert $this->assertEquals($a, $b); }}