namespace TestFramework
{
///
/// Provides helper functionality. Used in TestShareeLib and TestTINKLib.
///
public static class TestHelper
{
///
/// Eases comparison of xml- files.
///
///
///
public static string PrepareXmlForStringCompare(string p_strXmlFile)
{
return p_strXmlFile.Replace("\r\n", string.Empty).Replace("\t", string.Empty).Replace(" ", string.Empty);
}
}
}