Move all battle state from IPokemon to an ephemeral IBattlePokemon wrapper
This commit is contained in:
@@ -64,11 +64,11 @@ public class JudgementTests
|
||||
return typeLibrary;
|
||||
}
|
||||
|
||||
private static (Judgement Script, IExecutingMove Move, IPokemon Target) CreateTestSetup(string? itemName)
|
||||
private static (Judgement Script, IExecutingMove Move, IBattlePokemon Target) CreateTestSetup(string? itemName)
|
||||
{
|
||||
var move = Substitute.For<IExecutingMove>();
|
||||
var target = Substitute.For<IPokemon>();
|
||||
var user = Substitute.For<IPokemon>();
|
||||
var target = Substitute.For<IBattlePokemon>();
|
||||
var user = Substitute.For<IBattlePokemon>();
|
||||
var dynamicLibrary = Substitute.For<IDynamicLibrary>();
|
||||
var staticLibrary = Substitute.For<IStaticLibrary>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user