The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Convert existing NUnit test harnesses to VS Team System

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Darrell Norton

Posts: 876
Nickname: dnorton
Registered: Mar, 2004

Darrell Norton is a consultant for CapTech Ventures.
Convert existing NUnit test harnesses to VS Team System Posted: Jun 17, 2004 7:59 AM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Darrell Norton.
Original Post: Convert existing NUnit test harnesses to VS Team System
Feed Title: Darrell Norton's Blog
Feed URL: /error.htm?aspxerrorpath=/blogs/darrell.norton/Rss.aspx
Feed Description: Agile Software Development: Scrum, XP, et al with .NET
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Darrell Norton
Latest Posts From Darrell Norton's Blog

Advertisement

James Newkirk has a post on converting existing NUnit tests to use the new Visual Studio Team System testing framework. It uses the using statement assignment functionality that I blogged about here.

To convert your code all you have to do is something like this:

// using NUnit.Framework;
using Microsoft.VisualStudio.QualityTools.UnitTesting.Framework;
using TestFixture = Microsoft.VisualStudio.QualityTools.
    UnitTesting.Framework
.TestClassAttribute;
using
Test = Microsoft.VisualStudio.QualityTools.
    UnitTesting.Framework
.TestMethodAttribute;
using
SetUp = Microsoft.VisualStudio.QualityTools.
    UnitTesting.Framework
.TestInitializeAttribute;


This Blog Hosted On: http://www.DotNetJunkies.com/

Read: Convert existing NUnit test harnesses to VS Team System

Topic: Happy Bloomsday! Previous Topic   Next Topic Topic: DAAB 3.0, Whidbey and the Compact Framework

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use