Skip to content

Commit

Permalink
Dev: Add test class for TemplateConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Oct 16, 2017
1 parent e9b27f1 commit afe1019
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions phpunit.xml
Expand Up @@ -6,5 +6,8 @@
<testsuite name="Helpers">
<directory>tests/helpers</directory>
</testsuite>
<testsuite name="Models">
<directory>tests/models</directory>
</testsuite>
</testsuites>
</phpunit>
22 changes: 22 additions & 0 deletions tests/models/TemplateConfigurationTest.php
@@ -0,0 +1,22 @@
<?php

namespace ls\tests;

use PHPUnit\Framework\TestCase;

/**
* @since 2017-06-13
* @group tempconf
*/
class TemplateConfigurationTest extends TestBaseClass
{

/**
* Issue #12795.
*/
public function testCopyMinimalTemplate()
{
//$tempConf = new \TemplateConfiguration();
//$tempConf->prepareTemplateRendering();
}
}

0 comments on commit afe1019

Please sign in to comment.