~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/tests/mock-assembly/MockTestFixture.cs

  • Committer: jnewkirk
  • Date: 2002-07-11 03:15:10 UTC
  • Revision ID: vcs-imports@canonical.com-20020711031510-9hffr80j53vj00pl
initialĀ load

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Copyright (C) 2002. James W. Newkirk, Michael C. Two, Alexei A. Vorontsov. All Rights Reserved.
 
3
//
 
4
namespace Nunit.Tests.Assemblies
 
5
{
 
6
        using System;
 
7
        using Nunit.Framework;
 
8
 
 
9
        /// <summary>
 
10
        /// Summary description for MockTestFixture.
 
11
        /// </summary>
 
12
        /// 
 
13
        [TestFixture]
 
14
        public class MockTestFixture
 
15
        {
 
16
                [Test]
 
17
                public void MockTest1()
 
18
                {}
 
19
 
 
20
                [Test]
 
21
                public void MockTest2()
 
22
                {}
 
23
 
 
24
                [Test]
 
25
                public void MockTest3()
 
26
                {}
 
27
 
 
28
                [Test]
 
29
                protected void MockTest5()
 
30
                {}
 
31
 
 
32
 
 
33
                [Test]
 
34
                [Ignore("ignoring this test method for now")]
 
35
                public void MockTest4()
 
36
                {}
 
37
        }
 
38
}