Sha256: 9e65c1ce39ec720fdaf6032b2167ec1e875f629042458a78d646cff89bf621c5

Contents?: true

Size: 327 Bytes

Versions: 9

Compression:

Stored size: 327 Bytes

Contents

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

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