silverstripe-contentreview/tests/php/ContentReviewBaseTest.php

19 lines
397 B
PHP
Raw Normal View History

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