add the generic handler and the request classes

This commit is contained in:
Trismegiste
2013-05-12 20:52:29 +02:00
parent fc781c891a
commit 5ef810f3d0
3 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
/*
* DesignPatternPHP
*/
namespace DesignPatterns\Tests\ChainOfResponsibilities;
use DesignPatterns\ChainOfResponsibilities\Request;
/**
* ChainTest tests the CoR
*/
class ChainTest extends \PHPUnit_Framework_TestCase
{
public function testProcess()
{
}
}