~manishsinha/zeitgeist-sharp/fix-690112

« back to all changes in this revision

Viewing changes to Zeitgeist.Testsuite/Test.cs

  • Committer: Manish Sinha
  • Date: 2010-10-02 19:20:44 UTC
  • Revision ID: mail@manishsinha.net-20101002192044-yg7bha4c9eix4nba
Added Testsuit project. Added unittests for Interpretation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using NUnit.Framework;
 
3
namespace Zeitgeist.Testsuite
 
4
{
 
5
        [TestFixture()]
 
6
        public class Test
 
7
        {
 
8
                [Test()]
 
9
                public void TestCase ()
 
10
                {
 
11
                }
 
12
        }
 
13
}
 
14