mirror of
https://github.com/retailcrm/NameCaseLib.git
synced 2025-02-06 09:09:23 +03:00
34 lines
650 B
Plaintext
34 lines
650 B
Plaintext
|
<?php
|
||
|
|
||
|
require_once dirname(__FILE__) . '/../../Library/NCL.NameCase.ua.php';
|
||
|
|
||
|
|
||
|
class NCLNameCaseUaTest 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 NCLNameCaseUa;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Tears down the fixture, for example, closes a network connection.
|
||
|
* This method is called after a test is executed.
|
||
|
*/
|
||
|
protected function tearDown()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
{% tests %}
|
||
|
|
||
|
}
|