MINOR Made MultiForm test classes implement TestOnly so they're only used for testing purposes

This commit is contained in:
Sean Harvey 2008-09-20 09:22:01 +00:00
parent 6ac64b13a6
commit c5916ffaf0
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<?php
class MultiFormTestClass extends MultiForm {
class MultiFormTestClass extends MultiForm implements TestOnly {
protected static $start_step = 'MultiFormTestStepOne';

View File

@ -1,6 +1,6 @@
<?php
class MultiFormTestStepOne extends MultiFormStep {
class MultiFormTestStepOne extends MultiFormStep implements TestOnly {
protected static $next_steps = 'MultiFormTestStepTwo';

View File

@ -1,6 +1,6 @@
<?php
class MultiFormTestStepThree extends MultiFormStep {
class MultiFormTestStepThree extends MultiFormStep implements TestOnly {
protected static $is_final_step = true;

View File

@ -1,6 +1,6 @@
<?php
class MultiFormTestStepTwo extends MultiFormStep {
class MultiFormTestStepTwo extends MultiFormStep implements TestOnly {
protected static $next_steps = 'MultiFormTestStepThree';