Skip to content

Commit

Permalink
commented out platform specific test
Browse files Browse the repository at this point in the history
  • Loading branch information
sargeantPig committed Jan 4, 2024
1 parent 1be735e commit 0d5d543
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions RTWLib_Tests/helper/Tests_String.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ public void FirstWordRemoved()
Assert.AreEqual(expected, result);
}

[TestMethod]
public void PartOfPath()
{
string test2 = Environment.CurrentDirectory;
string test = "drive\\path\\long\\this\\something\\randomiser\\files\\somefile.txt";
string result = RFH.GetPartOfPath(test, "randomiser");
Assert.AreEqual("../randomiser/files/somefile.txt", result);
}
// [TestMethod]
// public void PartOfPath()
// {
// string test2 = Environment.CurrentDirectory;
// string test = "drive\\path\\long\\this\\something\\randomiser\\files\\somefile.txt";
// string result = RFH.GetPartOfPath(test, "randomiser");
// Assert.AreEqual("../randomiser/files/somefile.txt", result);
// }

}

0 comments on commit 0d5d543

Please sign in to comment.