8
www.orbitone.com Raas van Gaverestraat 83 B-9000 GENT, Belgium E-mail [email protected] Website www.orbitone.com Tel. +32 9 265 74 20 Fax +32 9 265 74 10 VAT BE 456.457.353 Bank 442-7059001-50 (KBC) 25 April, 2008 NUnit vs MSTest by Mel Gerats

NUnit vs MSTest

Embed Size (px)

DESCRIPTION

Comparison between NUnit and MSTest unit testing frameworks.

Citation preview

Page 1: NUnit vs MSTest

www.orbitone.com

Raas van Gaverestraat 83B-9000 GENT, Belgium E-mail [email protected] 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

Page 2: NUnit vs MSTest

NUnit vs MSTest, by Mel Gerats2

Nunit vs MSTest

The showdown

25 April, 2008

Page 3: NUnit vs MSTest

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

Page 4: NUnit vs MSTest

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

Page 5: NUnit vs MSTest

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

Page 6: NUnit vs MSTest

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

Page 8: NUnit vs MSTest

8 NUnit vs MSTest, by Mel Gerats

www.orbitone.com

25 April, 2008