Unity单元测试

作者:追风剑情 发布于:2023-5-26 15:19 分类:Unity3d

1、创建 Tests Assembly Folder

11111.png

2、创建 C# Test Script

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using NUnit.Framework;
  4. using UnityEngine;
  5. using UnityEngine.TestTools;
  6.  
  7. public class TestScript
  8. {
  9. // 执行单元测试方法前被Unity自动调用
  10. [SetUp]
  11. public void TestScriptSetUpPasses()
  12. {
  13. Debug.Log("TestScriptSetUpPasses()");
  14. }
  15.  
  16. // 测试普通方法
  17. [Test]
  18. public void TestScriptSimplePasses()
  19. {
  20. Debug.Log("TestScriptSimplePasses()");
  21. //使用Debug.Assert()来测试条件
  22. }
  23.  
  24. // 测试协程方法
  25. [UnityTest]
  26. public IEnumerator TestScriptWithEnumeratorPasses()
  27. {
  28. Debug.Log("TestScriptWithEnumeratorPasses()");
  29. //使用Debug.Assert()来测试条件
  30.  
  31. //使用yield跳过一帧
  32. yield return null;
  33. }
  34.  
  35. // 执行完单元测试方法后被Unity自动调用
  36. [TearDown]
  37. public void TearDownPasses()
  38. {
  39. Debug.Log("TearDownPasses()");
  40. }
  41. }

3、打开 Test Runner 窗口

33333.png

4、调用测试方法

选择一个单元测试方法,然后点击 [Run Selected]。或者直接点击 [Run All]。

5、查看输出日志

4444.png

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号