您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
46 行
1.4 KiB
46 行
1.4 KiB
using System.Collections;
|
|
using NUnit.Framework;
|
|
using UnityEngine;
|
|
using UnityEngine.Perception.Randomization.Configuration;
|
|
using UnityEngine.Perception.Randomization.Parameters;
|
|
using UnityEngine.TestTools;
|
|
|
|
namespace RandomizationTests
|
|
{
|
|
[TestFixture]
|
|
public class ParameterConfigurationTests
|
|
{
|
|
GameObject m_TestObject;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
m_TestObject = new GameObject();
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
Object.DestroyImmediate(m_TestObject);
|
|
}
|
|
|
|
[Test]
|
|
public void CheckForParametersWithSameNameTest()
|
|
{
|
|
var config = m_TestObject.AddComponent<ParameterConfiguration>();
|
|
var param1 = config.AddParameter<FloatParameter>();
|
|
var param2 = config.AddParameter<BooleanParameter>();
|
|
param1.name = "SameName";
|
|
param2.name = "SameName";
|
|
Assert.Throws<ParameterConfigurationException>(() => config.ValidateParameters());
|
|
}
|
|
|
|
[Test]
|
|
public void AddingNonParameterTypesTest()
|
|
{
|
|
var config = m_TestObject.AddComponent<ParameterConfiguration>();
|
|
Assert.DoesNotThrow(() => config.AddParameter(typeof(FloatParameter)));
|
|
Assert.Throws<ParameterConfigurationException>(() => config.AddParameter(typeof(Rigidbody)));
|
|
}
|
|
}
|
|
}
|