您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
684 B
23 行
684 B
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(".+"));
|
|
}
|
|
|
|
}
|
|
}
|