NameCaseLib/Tests/TestGenerator/Template/NCLNameCaseRuTest.main

34 lines
648 B
Plaintext

<?php
require_once dirname(__FILE__) . '/../../Library/NCLNameCaseRu.php';
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 %}
}