Files
Bachelor-Arbeit-Adrian-Haefner/Library/PackageCache/com.unity.xr.arkit@58a677f717be/Tests/Editor/ACToolTests.cs
adriadri6972 d3d9c5f833 upload project
2025-07-31 15:21:08 +02:00

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
}
}
}