41 lines
1.9 KiB
C#
41 lines
1.9 KiB
C#
|
using NUnit.Framework;
|
||
|
|
||
|
namespace Mirror.Weaver.Tests
|
||
|
{
|
||
|
public class WeaverSyncVarAttributeHookTests : WeaverTestsBuildFromTestName
|
||
|
{
|
||
|
static string OldNewMethodFormat(string hookName, string ValueType)
|
||
|
{
|
||
|
return string.Format("void {0}({1} oldValue, {1} newValue)", hookName, ValueType);
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void ErrorWhenNoHookFound()
|
||
|
{
|
||
|
HasError($"Could not find hook for 'health', hook name 'onChangeHealth'. Method signature should be {OldNewMethodFormat("onChangeHealth", "System.Int32")}",
|
||
|
"System.Int32 WeaverSyncVarHookTests.ErrorWhenNoHookFound.ErrorWhenNoHookFound::health");
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void ErrorWhenNoHookWithCorrectParametersFound()
|
||
|
{
|
||
|
HasError($"Could not find hook for 'health', hook name 'onChangeHealth'. Method signature should be {OldNewMethodFormat("onChangeHealth", "System.Int32")}",
|
||
|
"System.Int32 WeaverSyncVarHookTests.ErrorWhenNoHookWithCorrectParametersFound.ErrorWhenNoHookWithCorrectParametersFound::health");
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void ErrorForWrongTypeOldParameter()
|
||
|
{
|
||
|
HasError($"Wrong type for Parameter in hook for 'health', hook name 'onChangeHealth'. Method signature should be {OldNewMethodFormat("onChangeHealth", "System.Int32")}",
|
||
|
"System.Int32 WeaverSyncVarHookTests.ErrorForWrongTypeOldParameter.ErrorForWrongTypeOldParameter::health");
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void ErrorForWrongTypeNewParameter()
|
||
|
{
|
||
|
HasError($"Wrong type for Parameter in hook for 'health', hook name 'onChangeHealth'. Method signature should be {OldNewMethodFormat("onChangeHealth", "System.Int32")}",
|
||
|
"System.Int32 WeaverSyncVarHookTests.ErrorForWrongTypeNewParameter.ErrorForWrongTypeNewParameter::health");
|
||
|
}
|
||
|
}
|
||
|
}
|