Test framework improves:

* added command to check graveyard count command;
* added wrong cast/activate command auto-checks in strict mode;
This commit is contained in:
Oleg Agafonov 2020-06-01 09:37:17 +04:00
parent 3333cf3287
commit e7684e4bba
5 changed files with 137 additions and 33 deletions

View file

@ -145,9 +145,13 @@ public class SpellAbility extends ActivatedAbilityImpl {
this.costs.clearPaid();
}
public String getName() {
return this.name;
}
@Override
public String toString() {
return this.name;
return getName();
}
@Override