Hello, Testing & Automation people!
Is something wrong with using LogAssert.Expect for LogType.Exception?
Or am I crazy here?
Simple example below:
[Test]
public void NetworkManager_TestsTest()
{
LogAssert.Expect(LogType.Exception, “test”);
Debug.Assert(false, “test”);
}
I continue to receive the following error:
Unhandled log message: ‘[Assert] test’. Use UnityEngine.TestTools.LogAssert.Expect
No matter in what order I rearrange when to Expect the Assertion, before, after, even before AND after…
Thoughts?