Commit 01f96436 authored by Andy Hausmann's avatar Andy Hausmann

Updated.

parent 6df63166
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
<?php
/***************************************************************
* Copyright notice
*
* (c) 2012-2014 Andy Hausmann <ah@sota-studio.de>, SOTA Studio
*
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* Test case for class Tx_Flexslider_Controller_FlexSliderController.
*
* @version $Id$
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*
* @package TYPO3
* @subpackage FlexSlider
*
* @author Andy Hausmann <ah@sota-studio.de>
*/
class Tx_Flexslider_Controller_FlexSliderControllerTest extends Tx_Extbase_Tests_Unit_BaseTestCase {
/**
* @var Tx_Flexslider_Domain_Model_FlexSlider
*/
protected $fixture;
public function setUp() {
$this->fixture = new Tx_Flexslider_Domain_Model_FlexSlider();
}
public function tearDown() {
unset($this->fixture);
}
/**
* @test
*/
public function dummyMethod() {
$this->markTestIncomplete();
}
}
?>
\ No newline at end of file
<?php
/***************************************************************
* Copyright notice
*
* (c) 2012-2014 Andy Hausmann <ah@sota-studio.de>, SOTA Studio
*
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project is
* free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* Test case for class Tx_Flexslider_Domain_Model_FlexSlider.
*
* @version $Id$
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*
* @package TYPO3
* @subpackage FlexSlider
*
* @author Andy Hausmann <ah@sota-studio.de>
*/
class Tx_Flexslider_Domain_Model_FlexSliderTest extends Tx_Extbase_Tests_Unit_BaseTestCase {
/**
* @var Tx_Flexslider_Domain_Model_FlexSlider
*/
protected $fixture;
public function setUp() {
$this->fixture = new Tx_Flexslider_Domain_Model_FlexSlider();
}
public function tearDown() {
unset($this->fixture);
}
/**
* @test
*/
public function getTitleReturnsInitialValueForString() { }
/**
* @test
*/
public function setTitleForStringSetsTitle() {
$this->fixture->setTitle('Conceived at T3CON10');
$this->assertSame(
'Conceived at T3CON10',
$this->fixture->getTitle()
);
}
}
?>
\ No newline at end of file
File mode changed from 100755 to 100644
File mode changed from 100644 to 100755
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment