File size: 683 Bytes
05c9ac2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
using System.Text.RegularExpressions;
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools;
namespace Unity.MLAgents.Tests.Communicator
{
[TestFixture]
public class UnityRLCapabilitiesTests
{
[Test]
public void TestWarnOnPythonMissingBaseRLCapabilities()
{
var caps = new UnityRLCapabilities();
Assert.False(caps.WarnOnPythonMissingBaseRLCapabilities());
LogAssert.NoUnexpectedReceived();
caps = new UnityRLCapabilities(false);
Assert.True(caps.WarnOnPythonMissingBaseRLCapabilities());
LogAssert.Expect(LogType.Warning, new Regex(".+"));
}
}
}
|