remove empty lines

This commit is contained in:
Dennis Eichhorn 2019-12-15 14:11:01 +01:00
parent acd148b70b
commit 69673a0d36
15 changed files with 0 additions and 15 deletions

View File

@ -25,7 +25,6 @@ require_once __DIR__ . '/../../Autoloader.php';
*/
class MazeGeneratorTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox A random maze can be generated
* @covers phpOMS\Algorithm\Maze\MazeGenerator

View File

@ -27,7 +27,6 @@ require_once __DIR__ . '/../../Autoloader.php';
*/
class GridTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox By default a grid is empty
* @covers phpOMS\Algorithm\PathFinding\Grid

View File

@ -25,7 +25,6 @@ require_once __DIR__ . '/../../Autoloader.php';
*/
class NodeTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The node has the expected values after initialization
* @covers phpOMS\Algorithm\PathFinding\Node

View File

@ -27,7 +27,6 @@ require_once __DIR__ . '/../../Autoloader.php';
*/
class PathTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The path has the expected values after initialization
* @covers phpOMS\Algorithm\PathFinding\Path

View File

@ -25,7 +25,6 @@ require_once __DIR__ . '/../Autoloader.php';
*/
class OptionsTraitTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The option helper has the expected attributes
* @group framework

View File

@ -23,7 +23,6 @@ use phpOMS\DataStorage\Database\Query\Grammar\Grammar;
*/
class GrammarTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The grammar has the expected default values after initialization
* @group framework

View File

@ -24,7 +24,6 @@ use phpOMS\Utils\TestUtils;
*/
class MysqlGrammarTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The grammar has the expected default values after initialization
* @group framework

View File

@ -22,7 +22,6 @@ use phpOMS\Model\Message\DomAction;
*/
class DomTest extends \PHPUnit\Framework\TestCase
{
public function testAttributes() : void
{
$obj = new Dom();

View File

@ -21,7 +21,6 @@ use phpOMS\Model\Message\FormValidation;
*/
class FormValidationTest extends \PHPUnit\Framework\TestCase
{
public function testAttributes() : void
{
$obj = new FormValidation([]);

View File

@ -22,7 +22,6 @@ use phpOMS\Model\Message\NotifyType;
*/
class NotifyTest extends \PHPUnit\Framework\TestCase
{
public function testAttributes() : void
{
$obj = new Notify();

View File

@ -21,7 +21,6 @@ use phpOMS\Model\Message\Redirect;
*/
class RedirectTest extends \PHPUnit\Framework\TestCase
{
public function testAttributes() : void
{
$obj = new Redirect('');

View File

@ -21,7 +21,6 @@ use phpOMS\Model\Message\Reload;
*/
class ReloadTest extends \PHPUnit\Framework\TestCase
{
public function testAttributes() : void
{
$obj = new Reload();

View File

@ -25,7 +25,6 @@ use phpOMS\Uri\Argument;
*/
class ArgumentTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox A uri can be validated
* @covers phpOMS\Uri\Argument

View File

@ -23,7 +23,6 @@ use phpOMS\Utils\Encoding\Huffman\Huffman;
*/
class HuffmanTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox Encoding and decoding empty data results in an empty output
* @group framework

View File

@ -23,7 +23,6 @@ use phpOMS\Utils\IO\Csv\CsvSettings;
*/
class CsvSettingsTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The delimitar in a csv file can be guessed
* @covers phpOMS\Utils\IO\Csv\CsvSettings