Sha256: 3a3019562315bb26c0cb685f4de10ac8abe1e6c28862ad6f590694f9c0e2566a

Contents?: true

Size: 320 Bytes

Versions: 9

Compression:

Stored size: 320 Bytes

Contents

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;

namespace TestSolution.Tests
{

	[TestFixture]
	public class SomeTestFixture
	{

		[Test]
		public void foo()
		{
			Class1 c1 = new Class1();
			string s = c1.Foo();
			Assert.AreEqual("bar", s);
		}

	}
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
albacore-0.3.6 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-1.0.0.rc.2 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-1.0.0.rc.1 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.3.5 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.3.4 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.3.3 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.3.2 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.3.1 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.3.0 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs