Coverage.ResetAll
Declaration
public static void ResetAll();Описание
Сброс всех данных о покрытии.
using UnityEngine; using UnityEngine.TestTools;
public class CoverageExample : MonoBehaviour { void Start() { // Reset all coverage data that has been captured up to this point. Coverage.ResetAll(); } }