Update to latest CreatureLib, more work on battle tests.
This commit is contained in:
18
PkmnLibSharpTests/TestClass.cs
Normal file
18
PkmnLibSharpTests/TestClass.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace PkmnLibSharpTests
|
||||
{
|
||||
[SetUpFixture]
|
||||
public sealed class TestClass
|
||||
{
|
||||
[OneTimeSetUp]
|
||||
public void Init()
|
||||
{
|
||||
NativeLibrary.Load("Arbutils", Assembly.GetCallingAssembly(), DllImportSearchPath.AssemblyDirectory);
|
||||
NativeLibrary.Load("CreatureLib", Assembly.GetCallingAssembly(), DllImportSearchPath.AssemblyDirectory);
|
||||
NativeLibrary.Load("pkmnLib", Assembly.GetCallingAssembly(), DllImportSearchPath.AssemblyDirectory);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user