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

ResolveEventArgsTest.cs « System « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 728408b3b1d5513efed5a73894ec51a89aac6746 (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
29
30
//
// System.ResolveEventArgs Test Cases
//
// Author: Nick Drochak <ndrochak@gol.com>
//

using NUnit.Framework;
using System;

namespace MonoTests.System {

public class ResolveEventArgsTest : TestCase
{
	public static ITest Suite {
		get {
			return new TestSuite(typeof(RandomTest));
		}
	}

	public ResolveEventArgsTest() : base ("MonoTests.System.ResolveEventArgsTest testcase") {}
        public ResolveEventArgsTest(string name): base(name){}

	public void TestTheWholeThing()
        {
                ResolveEventArgs REA = new ResolveEventArgs("REA_Name");
                Assert ("Name property not correct", REA.Name == "REA_Name");
        }
}

}