Final keyword was removed in test class.
This commit is contained in:
Roman Syroeshko 2014-03-02 09:33:26 -08:00
parent a765d61b15
commit 9f434c7fa8
1 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ class PHPWord_TemplateTest extends \PHPUnit_Framework_TestCase
* @covers ::applyXslStyleSheet
* @test
*/
final public function testXslStyleSheetCanBeApplied()
public function testXslStyleSheetCanBeApplied()
{
// TODO: implement after merge of the issue https://github.com/PHPOffice/PHPWord/issues/56
}
@ -23,7 +23,7 @@ class PHPWord_TemplateTest extends \PHPUnit_Framework_TestCase
* @expectedExceptionMessage Could not set values for the given XSL style sheet parameters.
* @test
*/
final public function testXslStyleSheetCanNotBeAppliedOnFailureOfSettingParameterValue()
public function testXslStyleSheetCanNotBeAppliedOnFailureOfSettingParameterValue()
{
$template = new PHPWord_Template(
\join(\DIRECTORY_SEPARATOR,
@ -45,7 +45,7 @@ class PHPWord_TemplateTest extends \PHPUnit_Framework_TestCase
* @expectedExceptionMessage Could not load XML from the given template.
* @test
*/
final public function testXslStyleSheetCanNotBeAppliedOnFailureOfLoadingXmlFromTemplate()
public function testXslStyleSheetCanNotBeAppliedOnFailureOfLoadingXmlFromTemplate()
{
$template = new PHPWord_Template(
\join(\DIRECTORY_SEPARATOR,
@ -67,7 +67,7 @@ class PHPWord_TemplateTest extends \PHPUnit_Framework_TestCase
* @expectedExceptionMessage Could not transform the given XML document.
* @test
*/
final public function testXslStyleSheetCanNotBeAppliedOnFailureOfTransformation()
public function testXslStyleSheetCanNotBeAppliedOnFailureOfTransformation()
{
$template = new PHPWord_Template(
\join(\DIRECTORY_SEPARATOR,
@ -82,4 +82,4 @@ class PHPWord_TemplateTest extends \PHPUnit_Framework_TestCase
$template->applyXslStyleSheet($xslDOMDocument);
}
}
}