| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- declare(strict_types=1);
- namespace Meramo\Chatbotui\Tests\Unit\Domain\Model;
- use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
- /**
- * Test case
- *
- * @author Meramo Developer <develop@meramo.de>
- */
- class UrlTest extends UnitTestCase
- {
- /**
- * @var \Meramo\Chatbotui\Domain\Model\Url
- */
- protected $subject;
- protected function setUp()
- {
- parent::setUp();
- $this->subject = new \Meramo\Chatbotui\Domain\Model\Url();
- }
- protected function tearDown()
- {
- parent::tearDown();
- }
- /**
- * @test
- */
- public function dummyTestToNotLeaveThisFileEmpty()
- {
- self::markTestIncomplete();
- }
- }
|