暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BurstMathTests.cs 366B

1234567891011121314
  1. using NUnit.Framework;
  2. using Unity.Burst.Editor;
  3. public class BurstMathTests
  4. {
  5. [Test]
  6. [TestCase(1f, 3f, 3f, true)]
  7. [TestCase(1f, 3f, 2f, true)]
  8. [TestCase(1f, 3f, 3.00001f, false)]
  9. public void WithinRangeTest(float start, float end, float num, bool res)
  10. {
  11. Assert.That(BurstMath.WithinRange(start, end, num), Is.EqualTo(res));
  12. }
  13. }