暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PlaceholderTests.cs 343B

123456789101112131415
  1. using NUnit.Framework;
  2. namespace UnityEditor.Experimental.U2D.Animation.Tests
  3. {
  4. internal class Placeholder
  5. {
  6. [Test]
  7. public void PlaceHolderTest()
  8. {
  9. // Use the Assert class to test conditions.
  10. Assert.Pass("This is a placeholder to ensure we have at least one test.");
  11. }
  12. }
  13. }