mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 05:51:46 +02:00
22 lines
292 B
PHP
22 lines
292 B
PHP
<?php
|
|
|
|
/*
|
|
* DesignPatternPHP
|
|
*/
|
|
|
|
namespace DesignPatterns\Tests\ChainOfResponsibilities;
|
|
|
|
use DesignPatterns\ChainOfResponsibilities\Request;
|
|
|
|
/**
|
|
* ChainTest tests the CoR
|
|
*/
|
|
class ChainTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
public function testProcess()
|
|
{
|
|
|
|
}
|
|
|
|
} |