mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
19 lines
397 B
PHP
19 lines
397 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ContentReview\Tests;
|
|
|
|
use SilverStripe\Dev\FunctionalTest;
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
|
|
/**
|
|
* Extend this class when writing unit tests which are compatible with other modules.
|
|
* All compatibility code goes here.
|
|
*/
|
|
abstract class ContentReviewBaseTest extends FunctionalTest
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $translatableEnabledBefore;
|
|
}
|