public void CanResolveMLLifecycleLibrary() { string path; Assert.That(MagicLeapRemoteManager.TryResolveMLPluginPath("ml_lifecycle", out path), Is.True); Assert.That(path, Is.Not.Null); Assert.That(path.EndsWith(MagicLeapRemoteManager.hostExtension), Is.True); }
public void CanResolveMLGraphicsUtilsLibrary() { string path; Assert.That(MagicLeapRemoteManager.TryResolveMLPluginPath("ml_graphics_utils", out path), Is.True); Assert.That(path, Is.Not.Null); Assert.That(path.EndsWith(MagicLeapRemoteManager.hostExtension), Is.True); }
public void CanResolveMLPerceptionLibrary() { string path; Assert.That(MagicLeapRemoteManager.TryResolveMLPluginPath("ml_perception_client", out path), Is.True); Assert.That(path, Is.Not.Null); Assert.That(path.EndsWith(MagicLeapRemoteManager.hostExtension), Is.True); }