Click here to Skip to main content
15,894,825 members
Articles / Desktop Programming / WPF

WPF Unit Testing

Rate me:
Please Sign up or sign in to vote.
4.71/5 (14 votes)
22 Dec 2007CPOL4 min read 89.9K   1.6K   49  
How to unit test WPF applications
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using AvalonUnitTesting;
using WPFSampleApplication;

namespace WPFSampleApplicationUnitTests
{
    /// <summary>
    /// Unit Tests wpf data binding
    /// </summary>
    [TestFixture]
    public class WPFSampleApplicationTests
    {
        [Test]
        public void TestDataBindingForControls()
        {
            AvalonTestRunner.RunInSTA(delegate
            {
                //test the main window XAML.
                //This will assert all data binding errors
                AvalonTestRunner.RunDataBindingTests(new MainWindow());

                //runs the test for a specific user control
                AvalonTestRunner.RunDataBindingTests(new UserControlTests());
            });
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Other Uniblue Systems (www.uniblue.com)
Malta Malta
Check out my Blog
http://marlongrech.wordpress.com/

Currently building a WPF Controls library aka AvalonControlsLibrary
http://marlongrech.wordpress.com/avalon-controls-library/

Comments and Discussions