| | 1 | | using NUnit.Framework; |
| | 2 | | using System.Collections; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using UnityEngine; |
| | 5 | | using UnityEngine.TestTools; |
| | 6 | |
|
| | 7 | | public class LinearExtrapolatorTest { |
| 3 | 8 | | public static Agent GenerateAgent() { |
| 3 | 9 | | Agent agent = new GameObject().AddComponent<DummyAgent>(); |
| 3 | 10 | | Rigidbody rb = agent.gameObject.AddComponent<Rigidbody>(); |
| 3 | 11 | | agent.transform.position = new Vector3(10, 0, 5); |
| 3 | 12 | | rb.linearVelocity = new Vector3(1, -2, 2); |
| 3 | 13 | | return agent; |
| 3 | 14 | | } |
| | 15 | |
|
| | 16 | | [Test] |
| 1 | 17 | | public void TestPresent() { |
| 1 | 18 | | Agent agent = GenerateAgent(); |
| 1 | 19 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 1 | 20 | | PredictorState predictedState = predictor.Predict(time: 0f); |
| 1 | 21 | | Assert.AreEqual(agent.GetPosition(), predictedState.Position); |
| 1 | 22 | | Assert.AreEqual(agent.GetVelocity(), predictedState.Velocity); |
| 1 | 23 | | } |
| | 24 | |
|
| | 25 | | [Test] |
| 1 | 26 | | public void TestPast() { |
| 1 | 27 | | Agent agent = GenerateAgent(); |
| 1 | 28 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 1 | 29 | | PredictorState predictedState = predictor.Predict(time: -5f); |
| 1 | 30 | | Assert.AreEqual(new Vector3(5, 10, -5), predictedState.Position); |
| 1 | 31 | | Assert.AreEqual(agent.GetVelocity(), predictedState.Velocity); |
| 1 | 32 | | } |
| | 33 | |
|
| | 34 | | [Test] |
| 1 | 35 | | public void TestFuture() { |
| 1 | 36 | | Agent agent = GenerateAgent(); |
| 1 | 37 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 1 | 38 | | PredictorState predictedState = predictor.Predict(time: 10f); |
| 1 | 39 | | Assert.AreEqual(new Vector3(20, -20, 25), predictedState.Position); |
| 1 | 40 | | Assert.AreEqual(agent.GetVelocity(), predictedState.Velocity); |
| 1 | 41 | | } |
| | 42 | | } |