Sha256: 5d8ac8badbb1442dcee5a019c573a81166a4740d3bfd0a085de14a14054dd847

Contents?: true

Size: 667 Bytes

Versions: 12

Compression:

Stored size: 667 Bytes

Contents

using Machine.Specifications;
using NUnit.Framework;
using Xunit;
using Assert = Xunit.Assert;

namespace TestProj
{
    class Program
    {
        static void Main(string[] args)
        {
        }
    }

    [TestFixture]
    public class NunitTests
    {
        [Test]
        public void OneEqualsOne()
        {
            NUnit.Framework.Assert.AreEqual(1, 1);
        }
    }

    public class XUnitTests
    {
        [Fact]
        public void OneEqualsOne()
        {
            Assert.Equal(1,1);
        }
    }

    public class MspecTests
    {
        It should_equal_one = () => 1.ShouldEqual(1);
    }
}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
pre_push-1.1.2.1 spec/TestProj/TestProj/AllTests.cs
pre_push-1.1.2 spec/TestProj/TestProj/AllTests.cs
pre_push-1.1.1 spec/TestProj/TestProj/AllTests.cs
pre_push-1.1.0 spec/TestProj/TestProj/AllTests.cs
pre_push-1.0.1 spec/TestProj/TestProj/AllTests.cs
pre_push-1.0.0 spec/TestProj/TestProj/AllTests.cs
pre_push-0.0.7 spec/TestProj/TestProj/AllTests.cs
pre_push-0.0.6 spec/TestProj/TestProj/AllTests.cs
pre_push-0.0.5 spec/TestProj/TestProj/AllTests.cs
pre_push-0.0.4 spec/TestProj/TestProj/AllTests.cs
pre_push-0.0.3 spec/TestProj/TestProj/AllTests.cs
pre_push-0.0.2 spec/TestProj/TestProj/AllTests.cs