Data Driven Async Tests in Unity with UnityTest & UniTask
UniTask enables us to cleanly use async/await syntax within Unity. Testing code that uses UniTask requires that we use Unity Test Framework and run the tests from within a [UnityTest]. The recommended syntax for this is: But what if we want to run the same test with different input parameters? We don’t want to just […]