User:
Title: One of the Module_Core Test cases.
Content:
<?php
namespace GDO\Core\Test;
use PHPUnit\Framework\TestCase;
/**
* Automated coverage tests for all modules.
* - Require every file - Is Problematic for multi-provider modules. :(
* - Make one instance of every GDT encountered.
* - Test NULL handling on every GDT.
* - Make one instance of every GDO encountered.
* - Try to exec every method that only has default paramaters - @TODO Many methods need to fulfil the gdoParameters() paradigm.
*
* @author gizmore
*
*/
final class AutoCoverageTest extends TestCase
{
public function testRequireAllPHPFilesForSyntaxErrors()
{
}
public function testEveryGDTConstructors()
{
}
public function testNULLHandlingInEveryGDT()
{
}
public function testAllGDOConstructors()
{
}
public function testAllTrivialMethodsFor200Code()
{
}
}
Edit |
Back