Sha256: 8564ef19ab790a4429f8dc26f6eef393ebf4c885e88ec1f6a7c5c09c9fdbac68

Contents?: true

Size: 343 Bytes

Versions: 10

Compression:

Stored size: 343 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

10 entries across 10 versions & 1 rubygems

Version Path
albacore-0.2.0.preview1 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.1.5 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.1.4 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.1.3 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.1.2 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.1.1 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.1.0 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.0.9 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.0.8 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
albacore-0.0.7 spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs