Sha256: 41aed760083f7521e5a7600da3b0e2200a8ea12f8514c9b66ecc019f43453201

Contents?: true

Size: 368 Bytes

Versions: 2

Compression:

Stored size: 368 Bytes

Contents

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
albacore-0.0.9 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
albacore-0.0.8 spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs