Skip to content

Releases: AAulicino/Unity-Coroutines-for-NSubstitute

1.2.0

04 Jul 00:24
2131130
Compare
Choose a tag to compare

Added

  • MoveNextAndExpect() custom assertion.
  • MoveNextAndExpect(object value) custom assertion.
Runner.MoveNextAndExpect<WaitForSeconds>();
Runner.MoveNextAndExpect(new WaitForSeconds(1));

1.1.0

16 Jun 22:56
12a4e10
Compare
Choose a tag to compare

Added

  • Nested coroutine calls support.

Which means, support for the following cases:

IEnumerator MyRoutine ()
{
      yield return MyRoutine();
}
IEnumerator MyRoutine ()
{
      yield return runner.StartCoroutine(MyRoutine());
}

1.0.0

13 Jun 05:07
Compare
Choose a tag to compare

Initial Release