You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
3.3 KiB
131 lines
3.3 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using NUnit.Framework; |
|
|
|
namespace ICSharpCode.WpfDesign.Tests.XamlDom |
|
{ |
|
[TestFixture] |
|
public class WhitespaceTests : TestHelper |
|
{ |
|
[Test] |
|
public void TrimSurroundingWhitespace() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""> |
|
|
|
a test string |
|
|
|
</t:ExampleClass> |
|
"); |
|
} |
|
|
|
[Test] |
|
public void TrimConsecutiveWhitespace() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""> |
|
a test string |
|
</t:ExampleClass> |
|
"); |
|
} |
|
|
|
[Test] |
|
public void ConvertLineFeedToSpace() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""> |
|
a test |
|
string |
|
</t:ExampleClass> |
|
"); |
|
} |
|
|
|
[Test] |
|
public void PreserveSurroundingWhitespace() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml"" xml:space=""preserve""> |
|
|
|
a test string |
|
|
|
</t:ExampleClass> |
|
"); |
|
} |
|
|
|
[Test] |
|
public void PreserveConsecutiveWhitespace() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml"" xml:space=""preserve""> |
|
a test string |
|
</t:ExampleClass> |
|
"); |
|
} |
|
|
|
[Test] |
|
public void PreserveLineFeed() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml"" xml:space=""preserve""> |
|
a test |
|
string |
|
</t:ExampleClass> |
|
"); |
|
} |
|
|
|
[Test] |
|
public void CDataTest() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml"" xml:space=""preserve""> <![CDATA[ |
|
This is text inside the CData section. |
|
This is another line of text. |
|
This one is indented again. |
|
|
|
And that was an empty line. |
|
]]> |
|
</t:ExampleClass>"); |
|
} |
|
|
|
[Test] |
|
public void CDataAndContentMixTest() |
|
{ |
|
TestLoading(@" |
|
<t:ExampleClass |
|
xmlns=""http://schemas.microsoft.com/netfx/2007/xaml/presentation"" |
|
xmlns:t=""" + XamlTypeFinderTests.XamlDomTestsNamespace + @""" |
|
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""> |
|
some text |
|
<![CDATA[ text in <CDATA> ]]> |
|
more text |
|
</t:ExampleClass>"); |
|
} |
|
} |
|
}
|
|
|