This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.xr.arkit@4.2.10/Tests/Editor/ACToolTests.cs

21 lines
424 B
C#

using System;
using NUnit.Framework;
namespace UnityEditor.XR.ARKit.Tests
{
[TestFixture]
class ACToolTests
{
[Test]
public void ThrowsOnNonMacOSX()
{
#if !UNITY_EDITOR_OSX
Assert.Throws<ACTool.XCRunNotFoundException>(() =>
{
ACTool.Compile("somepath", "outputDir", new Version(11, 3));
});
#endif // UNITY_EDITOR_64
}
}
}