Releases: AAulicino/Unity-Coroutines-for-NSubstitute
Releases · AAulicino/Unity-Coroutines-for-NSubstitute
1.2.0
Added
- MoveNextAndExpect() custom assertion.
- MoveNextAndExpect(object value) custom assertion.
Runner.MoveNextAndExpect<WaitForSeconds>();
Runner.MoveNextAndExpect(new WaitForSeconds(1));
1.1.0
Added
- Nested coroutine calls support.
Which means, support for the following cases:
IEnumerator MyRoutine ()
{
yield return MyRoutine();
}
IEnumerator MyRoutine ()
{
yield return runner.StartCoroutine(MyRoutine());
}