Click here to Skip to main content
15,886,017 members
Articles / Programming Languages / C#

The Unit Test of Silverlight Applications with Asynchronous Service Callbacks

Rate me:
Please Sign up or sign in to vote.
4.88/5 (6 votes)
18 Feb 2011CPOL13 min read 50.6K   751   17  
This article presents an example on unit testing of Silverlight applications with asynchronous service callbacks.
<UserControl xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"  x:Class="SilverlightApplication.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" FontFamily="Verdana" FontSize="12"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Margin="10" Background="White">
        <Grid.RowDefinitions>
            <RowDefinition Height="auto" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        
        <Grid Grid.Row="0">
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*" />
                <ColumnDefinition Width="*" />
            </Grid.ColumnDefinitions>
            
            <Button Grid.Column="0" Content="Get 10 students from WCF"
                    Command="{Binding Path=GetStudentWCFCommand}"
                    Margin="5,0,0,5"/>
            <Button Grid.Column="1" Content="Get 10 students from wrong method in WCF"
                    Command="{Binding Path=GetStudentWCFWrongMethodCommand}"
                    Margin="5,0,0,5"/>
        </Grid>
        
        <sdk:DataGrid Margin="0, 8, 0, 0" Grid.Row="1"
                      ItemsSource="{Binding Path=StudentList}"/>
    </Grid>
</UserControl>

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
United States United States
I have been working in the IT industry for some time. It is still exciting and I am still learning. I am a happy and honest person, and I want to be your friend.

Comments and Discussions