Sha256: 51fc97732b399b4a5b6c6f650d409f72a1595c6d17c5c48aac85b2a1fd9eb3ca

Contents?: true

Size: 311 Bytes

Versions: 7

Compression:

Stored size: 311 Bytes

Contents

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xunit;

namespace TestSolution.XUnitTests
{
	public class SomeTestFixture
	{
		[Fact]
		public void foo()
		{
			Class1 c1 = new Class1();
			string s = c1.Foo();
			Assert.Equal("bar", s);
		}
	}
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
albacore-0.2.0.preview1 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
albacore-0.1.5 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
albacore-0.1.4 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
albacore-0.1.3 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
albacore-0.1.2 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
albacore-0.1.1 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
albacore-0.1.0 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs