Stories recently tagged with 'NUnit'

Free Continuous Integration Toolkit(web2asp.net)

submitted by sedgeysedgey(1728) 1 year, 3 months ago

continuous integration (CI) implements continuous processes of applying quality control - small pieces of effort, applied frequently. Continuous integration aims to improve the quality of software, and to reduce the time taken to deliver it, by replacing the traditional practice of applying quality control after completing all development. My personal definition is: “Giving a damn that the code you write is not breaking the app considering that other developers are working on the code base at the same time and realizing that you are not infallible.” read more...

1 comment |category: |Views: 537

tags: another

Selenium Two Tutorial using C#/NUnit and InternetExplorerDriver(www.theautomatedtester.co.uk)

submitted by automatedtesterautomatedtester(135) 1 year, 11 months ago

Tutorial on how to use the latest version of Selenium using C# and NUnit to test websites. The tutorial gives developers a chance to start writing their own tests. read more...

add a comment |category: |Views: 945

tags: another

Learning how to harness the power of NUnit RowTest(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 9 months ago

Taking a look at how you can utilize the power of RowTests within NUnit. By learning how to use RowTests you can reduce the amount of duplicate test code which exists when doing data driven tests. read more...

add a comment |category: |Views: 254

tags: another

Eliminating ToList().ForEach() by TDD and Extensions Methods(bengtbe.com)

submitted by bengtbebengtbe(470) 2 years, 11 months ago

Following "Program to an interface, not an implementation", you should use IList instead of List. However, you then lose access to some great delegate methods of the List class (e.g. ForEach, ConvertAll). In order to use them you have to first call ToList(). In this post I will use Test Driven Development (TDD) to add these as extension methods to the generic IEnumerable interface, elimintating the need to call ToList(). read more...

add a comment |category: |Views: 127

tags: another

Building a Nant Script -- Part 2: Adding NUnit tests(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how to create a build script with Nant, learning how to add NUnit tests read more...

add a comment |category: |Views: 193

tags: another

New ASP.NET MVC Videos and Tutorials(weblogs.asp.net)

submitted by jamesewelchjamesewelch(2275) 3 years, 5 months ago

15 new ASP.NET MVC videos were just published at the http://www.ASP.net/mvc website. The first 10 videos are basic tutorials on the ASP.NET MVC framework. If you haven’t had a chance to play with ASP.NET MVC yet, these tutorials are a great introduction. The second set of 5 videos is part of an ongoing video series: ASP.NET MVC Pair Programming. In these videos, I pair with a prominent community expert to build an entire ASP.NET MVC application from start to finish (because of time constraints – a very, very simple application). The goal is to emphasize the process of building a web application instead of the product. read more...

add a comment |category: |Views: 258

tags: another

Overview on NUnit's Attributes(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 7 months ago

Short screencast on how to use NUnits Attributes read more...

add a comment |category: |Views: 44

tags: another

Integrate PartCover.Net, Nant and Cruise Control.Net(blog.latrompa.com)

submitted by hgarciahgarcia(1534) 3 years, 8 months ago

How to run PartCover with Nant, generate an xml report and integrate the report into CC.Net to get your coverage statistics in your Integration server. read more...

add a comment |category: |Views: 701

tags: another

Why Pluggable Applications Fails in NUnit? (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years, 8 months ago

I am currently working on a project with a pluggable application. Although, the code was functioning very well it always failed during the NUnit tests, always! read more...

1 comment |category: |Views: 126

tags: another

Great C# Sample Application Using Design Patterns and NUnit(simplifydotnet.blogspot.com)

submitted by simplicityiskeysimplicityiskey(650) 3 years, 9 months ago

This is a nice and simple application that demonstrates uses of NUnit, design patterns and more. read more...

1 comment |category: |Views: 139

tags: another

Testing your asp.net pages with NunitAsp and not web controls(blog.latrompa.com)

submitted by hgarciahgarcia(1534) 4 years ago

Examples to test asp.net pages alwasy use web controls, what if you don't, just follow this tips and you will be running in no time. read more...

add a comment |category: |Views: 23

tags: another

Including unit tests in project release(csharptutorial.blogspot.com)

submitted by bacalaobacalao(320) 4 years, 4 months ago

It struck me as a great idea to include NUnit test in the next release of my SQLite query browser. If the program crashes or misbehaves, users can run the tests, find out why and either report to me or fix it themselves. read more...

add a comment |category: |Views: 5

tags: another

NUnit Templates and Snippets for Visual Studio 2005 - Now support C#(codechimp.org)

submitted by codechimpcodechimp(345) 4 years, 4 months ago

This handy VSI Package has been updated to now include C# variants of the existing VB items. It includes project and item templates as well as code snippets to easily create NUnit test projects, fixtures and methods. read more...

1 comment |category: |Views: 194

tags: another

Comparing NUnit, MbUnit, MSTest and xUnit.net(davidhayden.com)

submitted by rpattersonrpatterson(745) 4 years, 4 months ago

With so many frameworks available to writing your unit tests, this article give a good comparaison of the most popular ones. read more...

1 comment |category: |Views: 432

tags: another

Learn the new NUnit 2.4 Constraint-Based Assert Model (blog.troyd.net)

submitted by powerrushpowerrush(3873) 4 years, 5 months ago

Instead of using a different Assert method for each different type of assertion (e.g.: Assert.AreEqual() for equality comparison, or Assert.IsTrue() for boolean evaluation), the new Constraint-Based Assert Model introduced in NUnit 2.4 utilizes only one Assert method named Assert.That(). read more...

2 comments |category: |Views: 68

tags: another

Good bye NUnit.Behave hello Behave#(lostechies.com)

submitted by agilejoeagilejoe(860) 4 years, 6 months ago

Most of you who read my blog know that I have been working on NUnit.Behave which was meant to mirror the functionality of rbehave in .Net. My initial spike was a success but it required that you inherit from an base NUnit Test Fixture. Even I wouldn't use it! So I spent some time decoupling it from NUnit into it's own framework. At the same time my idea caught on and Jimmy Bogard decided to do the same thing. Well to make a long story short we have been collaborating on the differences between our two frameworks over the last week and have decided to go with Behave#. I love OSS, where else could this be possible! read more...

2 comments |category: |Views: 5

tags: another