17 lines
225 B
PHP
17 lines
225 B
PHP
<?php
|
|
use \UnitTester;
|
|
|
|
class SubscriberCest {
|
|
|
|
public function _before() {
|
|
$this->subscriber = true;
|
|
}
|
|
|
|
public function _after() {
|
|
}
|
|
|
|
public function test() {
|
|
expect($this->subscriber)->equals(true);
|
|
}
|
|
}
|