您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
37 行
1006 B
37 行
1006 B
using System.Collections;
|
|
using NUnit.Framework;
|
|
using UnityEngine.TestTools;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
using Unity.MLAgents;
|
|
#if UNITY_EDITOR
|
|
using UnityEditor.SceneManagement;
|
|
#endif
|
|
|
|
namespace Tests
|
|
{
|
|
public class AcademyStepperTest
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
Academy.Instance.Dispose();
|
|
SceneManager.LoadScene("ML-Agents/Scripts/Tests/Runtime/AcademyTest/AcademyStepperTestScene");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verify in each update, the Academy is only stepped once.
|
|
/// </summary>
|
|
[UnityTest]
|
|
public IEnumerator AcademyStepperCleanupPasses()
|
|
{
|
|
var academy = Academy.Instance;
|
|
int initStepCount = academy.TotalStepCount;
|
|
for (var i = 0; i < 5; i++)
|
|
{
|
|
yield return new WaitForFixedUpdate();
|
|
Assert.True(academy.TotalStepCount - initStepCount == i + 1);
|
|
}
|
|
}
|
|
}
|
|
}
|