You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding an [Ignore("")] attribute to a Unity Edit Mode unit test and this test is run using the Unit Tests window, the unit test fails, while it is correctly ignored in Unity (2018.2 used).
How to produce:
Create new Unity Project
Create edit mode test assembly
Create test script in assembly
`using NUnit.Framework;
[TestFixture]
public class MyScriptTests {
[Test]
//[Ignore("Ignore Test")]
public void MyScriptSomeMethod()
{
}
}`
Run tests with this script, tests succeeds
Uncomment [Ignore] attribute, run tests, tests fails
Run same tests in Unity, tests succeed (or actually it is correctly ignored)
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
When adding an [Ignore("")] attribute to a Unity Edit Mode unit test and this test is run using the Unit Tests window, the unit test fails, while it is correctly ignored in Unity (2018.2 used).
How to produce:
`using NUnit.Framework;
[TestFixture]
public class MyScriptTests {
}`
The text was updated successfully, but these errors were encountered: