Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExpectationOfIO.cs « UnitTesting « System « UnitTestFramework « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00e1b7bc999fc0b42785ef33b01d2b4ddc2f1d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;

namespace System.UnitTesting
{
    public class Expectation<TInput, TOutput>
    {
        public Expectation(TInput input, TOutput output)
        {
            Input = input;
            Output = output;
        }

        public TInput Input
        {
            get;
            private set;
        }

        public TOutput Output
        {
            get;
            private set;
        }
    }
}