~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/tests/mock-assembly/OneTestCase.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.Singletons
 
5
{
 
6
        using Nunit.Framework;
 
7
 
 
8
        /// <summary>
 
9
        /// Summary description for OneTestCase.
 
10
        /// </summary>
 
11
        /// 
 
12
        [TestFixture]
 
13
        public class OneTestCase
 
14
        {                               
 
15
                [Test]
 
16
                public virtual void TestCase() 
 
17
                {}
 
18
        }
 
19
}