1 | <?php |
||
27 | class ArticleTest extends \PHPUnit_Framework_TestCase |
||
28 | { |
||
29 | /** |
||
30 | * @var Article |
||
31 | */ |
||
32 | protected $fixture; |
||
33 | |||
34 | public function setUp() |
||
38 | |||
39 | /** |
||
40 | */ |
||
41 | public function testCopyIsNullToStart() |
||
49 | |||
50 | /** |
||
51 | * @covers Axstrad\Component\Content\Model\Article::setHeading |
||
52 | */ |
||
53 | public function testCanSetHeading() |
||
62 | |||
63 | /** |
||
64 | * @covers Axstrad\Component\Content\Model\Article::setHeading |
||
65 | */ |
||
66 | public function testSetHeadingReturnsSelf() |
||
73 | |||
74 | /** |
||
75 | * @covers Axstrad\Component\Content\Model\Article::getHeading |
||
76 | * @depends testCanSetHeading |
||
77 | * @uses Axstrad\Component\Content\Model\Article::setHeading |
||
78 | */ |
||
79 | public function testGetHeadingMethod() |
||
87 | } |
||
88 |