Skip to content

Commit

Permalink
bring in bugfix from #4532
Browse files Browse the repository at this point in the history
  • Loading branch information
dongruoping committed Nov 10, 2020
1 parent e67bc08 commit 2221d59
Show file tree
Hide file tree
Showing 6 changed files with 486 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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()
{
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);
}
}
}
}
Loading

0 comments on commit 2221d59

Please sign in to comment.