// 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 NUnit.Framework; namespace ICSharpCode.WpfDesign.Tests.XamlDom { [TestFixture] public class SamplesTests : TestHelper { /// /// 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 Text Some text at the bottom of the page. Some More Text Some Text Below the Buttons "); } /// /// Using Hyperlinks /// [Test] public void Intro4() { TestLoading(@" Start Page Go To Page 2 "); } [Test] public void Resources() { TestLoading(@" "); } [Test] public void Resources2() { 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(@" "); } } }