// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
using System;
using System.IO;
using System.Windows;
using System.Windows.Markup;
using System.Xaml;
using ICSharpCode.WpfDesign.XamlDom;
using NUnit.Framework;
namespace ICSharpCode.WpfDesign.Tests.XamlDom
{
[TestFixture]
public class SamplesTests : TestHelper
{
///
/// Non-trivial because of: InlineCollection wrapping a string
///
[Test]
public void Complex1()
{
TestLoading(@"
Header 1Header 2Header 3");
}
///
/// Non-trivial because of: InlineCollection wrapping a string
///
[Test]
public void Intro1()
{
TestLoading(@"
Hello, World!
");
}
///
/// Non-trivial because of: found a bug in Control.Content handling
///
[Test]
public void Intro2()
{
TestLoading(@"
");
}
///
/// Non-trivial because of: use of attached properties, units for width+height
///
[Test]
public void Intro3()
{
TestLoading(@"
Some TextSome text at the bottom of the page.Some More TextSome Text Below the Buttons
");
}
///
/// Using Hyperlinks
///
[Test]
public void Intro4()
{
TestLoading(@"
Start PageGo To Page 2");
}
[Test]
public void Resources1()
{
TestLoading(@"");
}
[Test]
public void Resources2()
{
TestLoading(@"");
}
[Test]
public void Resources3()
{
TestLoading(@"");
}
[Test]
public void Resources4()
{
TestLoading(@"");
}
[Test]
public void Resources5()
{
TestLoading(@"");
}
[Test]
public void Animation1()
{
TestLoading(@"");
}
[Test]
public void Animation2()
{
//Loaded Property has to be found, because this so also works in WPF
TestLoading(@"");
}
[Test]
public void Animation3()
{
TestLoading(@"");
}
[Test]
public void ContentControl1()
{
TestLoading(@"");
}
[Test]
public void ContentControl2()
{
TestLoading(@"");
}
[Test]
public void Children1()
{
TestLoading(@"");
}
[Test]
public void Children2()
{
TestLoading(@"");
}
[Test]
public void Children3()
{
TestLoading(@"");
}
[Test]
public void XReferenceTest1()
{
TestLoading(@"");
}
[Test]
public void Style1()
{
TestLoading(@"");
}
[Test]
public void Style2()
{
TestLoading(@"");
}
[Test]
public void Style3()
{
TestLoading(@"");
}
[Test]
public void Template1()
{
TestLoading(@"");
}
[Test]
public void Template2()
{
TestLoading(@"");
}
[Test]
public void ListBox1()
{
TestLoading(@"");
}
[Test]
//[Ignore("To fix this Test, we need a special Handling for Setter class, because MS Xaml Parser casts the Value of a Setter to the PropertyType wich is defined in another Property!")]
//Or maybe we need support for XamlSetTypeConverterAttribute, TypeConverterAttribute(typeof(SetterTriggerConditionValueConverter)), ...
public void ListBox2()
{
TestLoading(@"");
}
[Test]
public void ListBox3()
{
TestLoading(@"");
}
[Test]
public void Window1()
{
var xaml= @"";
XamlParser.Parse(new StringReader(xaml));
}
[Test]
public void CData1()
{
TestLoading(@"");
}
}
}