silverstripe-contentreview/tests/php/ContentReviewBaseTest.php

19 lines
397 B
PHP
Raw Normal View History

2015-11-02 00:27:42 +01:00
<?php
2015-09-23 00:32:23 +02:00
namespace SilverStripe\ContentReview\Tests;
use SilverStripe\Dev\FunctionalTest;
use SilverStripe\CMS\Model\SiteTree;
2015-09-23 00:32:23 +02:00
/**
2015-11-02 00:27:42 +01:00
* Extend this class when writing unit tests which are compatible with other modules.
* All compatibility code goes here.
2015-09-23 00:32:23 +02:00
*/
2015-11-02 00:27:42 +01:00
abstract class ContentReviewBaseTest extends FunctionalTest
{
/**
* @var bool
*/
protected $translatableEnabledBefore;
}