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