You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
221 lines
5.6 KiB
221 lines
5.6 KiB
![]()
13 years ago
|
<?php
|
||
|
/**
|
||
|
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
|
||
|
*/
|
||
|
class NumberFormatterTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var NumberFormatter
|
||
|
*/
|
||
|
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 NumberFormatter;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Tears down the fixture, for example, closes a network connection.
|
||
|
* This method is called after a test is executed.
|
||
|
*/
|
||
|
protected function tearDown()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::create
|
||
|
* @todo Implement testCreate().
|
||
|
*/
|
||
|
public function testCreate()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::format
|
||
|
* @todo Implement testFormat().
|
||
|
*/
|
||
|
public function testFormat()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::parse
|
||
|
* @todo Implement testParse().
|
||
|
*/
|
||
|
public function testParse()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::formatCurrency
|
||
|
* @todo Implement testFormatCurrency().
|
||
|
*/
|
||
|
public function testFormatCurrency()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::parseCurrency
|
||
|
* @todo Implement testParseCurrency().
|
||
|
*/
|
||
|
public function testParseCurrency()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::setAttribute
|
||
|
* @todo Implement testSetAttribute().
|
||
|
*/
|
||
|
public function testSetAttribute()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::getAttribute
|
||
|
* @todo Implement testGetAttribute().
|
||
|
*/
|
||
|
public function testGetAttribute()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::setTextAttribute
|
||
|
* @todo Implement testSetTextAttribute().
|
||
|
*/
|
||
|
public function testSetTextAttribute()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::getTextAttribute
|
||
|
* @todo Implement testGetTextAttribute().
|
||
|
*/
|
||
|
public function testGetTextAttribute()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::setSymbol
|
||
|
* @todo Implement testSetSymbol().
|
||
|
*/
|
||
|
public function testSetSymbol()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::getSymbol
|
||
|
* @todo Implement testGetSymbol().
|
||
|
*/
|
||
|
public function testGetSymbol()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::setPattern
|
||
|
* @todo Implement testSetPattern().
|
||
|
*/
|
||
|
public function testSetPattern()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::getPattern
|
||
|
* @todo Implement testGetPattern().
|
||
|
*/
|
||
|
public function testGetPattern()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::getLocale
|
||
|
* @todo Implement testGetLocale().
|
||
|
*/
|
||
|
public function testGetLocale()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::getErrorCode
|
||
|
* @todo Implement testGetErrorCode().
|
||
|
*/
|
||
|
public function testGetErrorCode()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers NumberFormatter::getErrorMessage
|
||
|
* @todo Implement testGetErrorMessage().
|
||
|
*/
|
||
|
public function testGetErrorMessage()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
}
|