Skip to content
alex hall
  • About
  • Log

Tag: TDD

Log

Data Driven Async Tests in Unity with UnityTest & UniTask

by : alexMay 4, 2021May 5, 2021

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 […]