提交修改

This commit is contained in:
changyunjia
2026-06-09 15:16:52 +08:00
co-authored by changyunjia
parent d4442fc21f
commit 3ac4fe0cd0
330 changed files with 48115 additions and 36763 deletions
@@ -0,0 +1,17 @@
using UnityEngine;
using NUnit.Framework;
namespace Unity.Advertisement.IosSupport.Tests
{
public class RuntimeTests
{
[Test]
[Timeout(10000)]
//[UnityPlatform (exclude = new[] { RuntimePlatform.IPhonePlayer })] //Need to find a way to programatically set state on the iPhone for this app otherwise, even on iOS initial state will be Not Determined.
public void TestTrackingStatusMessageUnsupported()
{
Assert.That(ATTrackingStatusBinding.GetAuthorizationTrackingStatus(), Is.EqualTo(ATTrackingStatusBinding.AuthorizationTrackingStatus.NOT_DETERMINED));
}
}
}