tests: added verify test to check miss of controlled filter in equip abilities (related to #11473);

This commit is contained in:
Oleg Agafonov 2023-11-27 23:08:23 +04:00
parent a4c90d9b71
commit 3a92d67d10
9 changed files with 68 additions and 9 deletions

View file

@ -182,7 +182,14 @@ public enum TargetController {
@Override
public String toString() {
return "TargetController(" + controller.toString() + ')';
return "TargetController (" + controller.toString() + ')';
}
/**
* For tests
*/
public TargetController getController() {
return this.controller;
}
}
}