Tests are used as living usage examples as well as regression checks.
TL;DR:
examples/*Test.php
contains examples of Model construction,examples/fixtures/*Test/test*.txt
contains expected generated code.
In the examples
directory we can find tests written with PHPUnit,
they have been designed to also be used as living examples.
Each test method is structured in a similar way:
// Describing the model
$argument = new Argument('string', 'filename');
// Generating the code
$generatedCode = $this->prettyPrinter->generateCode($argument);
// Checking it against what's expected
$this->assertSame('$filename', $generatedCode);
Sometimes the expected code is spanned on many lines:
$method = new Method('__construct');
$generatedCode = $this->prettyPrinter->generateCode($method);
$this->assertExpectedCode($generatedCode);
The assertExpectedCode
method uses the current Test Class and method names to
guess the location of a fixture file, where the expected code is.
Those can be found in examples/fixtures/<TestClassName>/<testMethodName>.txt
.
Note: Fixture files always have an extra line, which is trimmed before the actual assertion.
When changes are applied to Memio, the following command is executed to make sure no regressions have been introduced:
phpunit
Previous pages: