We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 561780b commit 0f54a9bCopy full SHA for 0f54a9b
Assets/MixedRealityToolkit.Tests/EditModeTests/Core/MixedRealityToolkitFilesTests.cs
@@ -101,6 +101,16 @@ public IEnumerator TestRootAssetFolderResolution()
101
Assert.IsNotNull(resolvedPath);
102
}
103
104
+ /// <summary>
105
+ /// Validates that FileUtilities.FindFilesInAssets can find this test script in the asset database.
106
+ /// </summary>
107
+ [Test]
108
+ public void TestFileUtilitiesFindFilesInAssets()
109
+ {
110
+ FileInfo[] files = FileUtilities.FindFilesInAssets("MixedRealityToolkitFilesTests.cs");
111
+ Assert.IsTrue(files.Length == 1);
112
+ }
113
+
114
[TearDown]
115
public void CleanupTests()
116
{
0 commit comments