Skip to content

Commit

Permalink
Deliberately add test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
desplesda committed Mar 15, 2024
1 parent 8c90e38 commit e80356f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Tests/Editor/UnityLocalisationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ public void UnityLocalisation_ImplicitStringsImportedCorrectly()
}
}


[Test]
public void TestFailing()
{
Assert.Fail("This Edit-Mode test failed.");
}

[Test]
public void UnityLocalisation_FormerImplictLinesAreRemovedFromStringTables()
{
Expand Down
9 changes: 9 additions & 0 deletions Tests/Runtime/DialogueRunnerTests/DialogueRunnerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,15 @@ public IEnumerator DialogueRunner_CanAccessInitialValues()

yield return null;
}


[Test]
public void TestFailing()
{
Assert.Fail("This Play-Mode test failed.");
}


[UnityTest]
public IEnumerator DialogueRunner_CanAccessNodeNames()
{
Expand Down

0 comments on commit e80356f

Please sign in to comment.