sharee.bike-App/TestFramework/TestHelper.cs

19 lines
502 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
namespace TestFramework
2021-11-14 23:27:29 +01:00
{
2022-09-06 16:08:19 +02:00
/// <summary>
/// Provides helper functionality. Used in TestShareeLib and TestTINKLib.
/// </summary>
public static class TestHelper
{
/// <summary>
/// Eases comparison of xml- files.
/// </summary>
/// <param name="p_strXmlFile"></param>
/// <returns></returns>
public static string PrepareXmlForStringCompare(string p_strXmlFile)
{
return p_strXmlFile.Replace("\r\n", string.Empty).Replace("\t", string.Empty).Replace(" ", string.Empty);
}
}
2021-11-14 23:27:29 +01:00
}