2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Configuration.Install / Test / System.Configuration.Install / FakeTest.cs
1 //
2 // MonoTests.System.Configuration.Install.FakeTest
3 //
4 // Authors:
5 //      Martin Willemoes Hansen <mwh@sysrq.dk>
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 // 
9 // This test should be sent to /dev/null when real
10 // tests arrive.
11
12 using System;
13 using NUnit.Framework;
14
15 namespace MonoTests.System.Configuration.Install {
16
17         [TestFixture]
18         public class FakeTest {
19
20                 [SetUp]
21                 public void GetReady () {}
22
23                 [TearDown]
24                 public void Clear () {}
25
26                 [Test]
27                 public void Fake () {}
28         }
29 }
30