NUnit vs MSTest

Preview:

DESCRIPTION

Comparison between NUnit and MSTest unit testing frameworks.

Citation preview

www.orbitone.com

Raas van Gaverestraat 83B-9000 GENT, Belgium E-mail info@orbitone.com Website www.orbitone.com

Tel. +32 9 265 74 20Fax +32 9 265 74 10VAT BE 456.457.353Bank 442-7059001-50 (KBC)

25 April, 2008 NUnit vs MSTestby Mel Gerats

NUnit vs MSTest, by Mel Gerats2

Nunit vs MSTest

The showdown

25 April, 2008

Attributes

Nunit [Category("name")] [ExpectedException("myException

")] [Ignore("reason")] [Platform("name")] [SetUp] [TearDown] [Test] [TestFixture] [TextFixtureSetUp] [TextFixtureTearDown] [Explicit]

MSTest [AssemblyCleanup] [AssemblyInitialize] [ClassCleanup] [ClassInitialize] [CssIteration("name")] [CssProjectStructure("name")] [DataSource("name")] [DeploymentItem("path")] [Description("text")] [ExpectedException("myExcepton")] [HostType("type")] [Ignore] [Owner("name")] [Priority(1)] [TestClass] [TestCleanup] [TestInitialize] [TestMethod] [TestProperty("name", "value")] [Timeout(30)]

25 April, 20083 NUnit vs MSTest, by Mel Gerats

Asserts

Nunit Assert.AreEqual Assert.AreNotEqual Assert.AreNotSame Assert.AreSame Assert.Contains Assert.Fail Assert.Greater Assert.Ignore Assert.IsAssignableFrom Assert.IsEmpty Assert.IsFalse Assert.IsInstanceOfType Assert.IsNaN Assert.IsNotAssignableFrom Assert.IsNotEmpty Assert.IsNotInstanceOfType Assert.IsNotNull Assert.IsNull Assert.IsTrue Assert.Less

MSTest Assert.AreEqual Assert.AreNotEqual Assert.AreNotSame Assert.AreSame Assert.Equals Assert.Fail Assert.Inconclusive Assert.IsFalse Assert.IsInstanceOfType Assert.IsNotInstanceOfType Assert.IsNotNull Assert.IsNull Assert.IsTrue

25 April, 20084 NUnit vs MSTest, by Mel Gerats

Features

NUnit Independent test runner Integration with 3rd party

toolsFastOpen source, lots of updates

MSTest Integrated in VSSlower

25 April, 20085 NUnit vs MSTest, by Mel Gerats

Features…

NUnitBuild server integration

with some workBuilt-in mocking, addin

framework

Runs MS Tests !

MSTestBuild server integrationCode coverage results

integrated

NUnitvsMSTest.sln

25 April, 20086 NUnit vs MSTest, by Mel Gerats

8 NUnit vs MSTest, by Mel Gerats

www.orbitone.com

25 April, 2008

Recommended