UrlTest.php 679 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. declare(strict_types=1);
  3. namespace Meramo\Chatbotui\Tests\Unit\Domain\Model;
  4. use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
  5. /**
  6. * Test case
  7. *
  8. * @author Meramo Developer <develop@meramo.de>
  9. */
  10. class UrlTest extends UnitTestCase
  11. {
  12. /**
  13. * @var \Meramo\Chatbotui\Domain\Model\Url
  14. */
  15. protected $subject;
  16. protected function setUp()
  17. {
  18. parent::setUp();
  19. $this->subject = new \Meramo\Chatbotui\Domain\Model\Url();
  20. }
  21. protected function tearDown()
  22. {
  23. parent::tearDown();
  24. }
  25. /**
  26. * @test
  27. */
  28. public function dummyTestToNotLeaveThisFileEmpty()
  29. {
  30. self::markTestIncomplete();
  31. }
  32. }