2011-05-01 20:50:50 +03:00
|
|
|
<?php
|
|
|
|
|
2011-07-20 21:12:17 +03:00
|
|
|
require_once dirname(__FILE__) . '/../../Library/NCLNameCaseRu.php';
|
2011-05-01 20:50:50 +03:00
|
|
|
|
|
|
|
|
|
|
|
class NCLNameCaseRuTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var NCLNameCaseRu
|
|
|
|
*/
|
|
|
|
protected $object;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
|
|
* This method is called before a test is executed.
|
|
|
|
*/
|
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
$this->object = new NCLNameCaseRu;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tears down the fixture, for example, closes a network connection.
|
|
|
|
* This method is called after a test is executed.
|
|
|
|
*/
|
|
|
|
protected function tearDown()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
{% tests %}
|
|
|
|
|
|
|
|
}
|