Stories recently tagged with 'Testing'

Continuous Testing using Autotest.Net(dotnetsurfers.com)

submitted by luckylucky(95) 1 year, 4 months ago

Establish a continuous unit testing/development workflow in .NET using Autotest.Net read more...

add a comment |category: |Views: 58

tags: another

Unit Test Naming Convention(stevesmithblog.com)

submitted by bungleboozbunglebooz(1132) 1 year, 4 months ago

I’ve been writing tests and unit tests for quite a while, and naturally my personal preference for naming them has evolved somewhat with time. Initially, I didn’t really know what I was doing and the default organization tended to be something like “given a class, Customer, all of the tests will go into a class called CustomerTests.” This turned out, for me at least, to be less than ideal. read more...

add a comment |category: |Views: 47

tags: another

.NET Code Coverage (without NCover)(www.nikosbaxevanis.com)

submitted by baxevanisbaxevanis(30) 1 year, 4 months ago

.NET Code Coverage in Visual Studio 2010 (Premium and Ultimate) with xUnit and TestDriven.Net read more...

add a comment |category: |Views: 11

tags: another

Mocks, Stubs and Unreadable Tests: Clearly I'm Doing This Wrong(www.lostechies.com)

submitted by mdoyon129mdoyon129(5) 1 year, 4 months ago

Unit Testing read more...

add a comment |category: |Views: 8

tags: another

Mocking the Unmockable using Microsoft Moles with Gallio(geekswithblogs.net)

submitted by AdarroAdarro(5) 1 year, 4 months ago

Lists several advantages of using moles for mocking and includes samples to integrate with Gallio and R# (SharpDevelop). read more...

add a comment |category: |Views: 32

tags: another

Dean Hume - Capturing Web Page Screenshots with Selenium 2(deanhume.com)

submitted by deanomachinodeanomachino(764) 1 year, 4 months ago

There have been many times when I have run a Unit Test that has failed and afterwards I wondered where it went wrong. The ability to see what occurred on the page or how it looked at the time would be a great benefit. I've been writing a few automated tests lately and looking for a way to implement this functionality. Luckily, Selenium 2 provides easy functionality that allows you to capture a screenshot of the page at the time that a unit test is being run - and it's really easy too. read more...

add a comment |category: |Views: 35

tags: another

JavaScript and ASP.NET MVC Framework Features(blog.agafonov.net.ua)

submitted by SoftEngineerSoftEngineer(495) 1 year, 4 months ago

JavaScript and ASP.NET MVC Framework tips and tricks read more...

add a comment |category: |Views: 4

tags: another

Integrating JavaScript Unit Tests with Visual Studio(stephenwalther.com)

submitted by ipavloviipavlovi(5) 1 year, 5 months ago

Great aproach to javaScript testing in Visual Studio! read more...

add a comment |category: |Views: 14

tags: another

Generating Report for NUnit(weblogs.asp.net)

submitted by thangchungthangchung(204) 1 year, 5 months ago

Time ago, I received a request that people ask me how they can generate reports of the results of testing using NUnit? In fact, I may never do this. In the little world of my programming, I only care about the test results, red-green-refactoring, and that was it. When I got that question quite a bit unexpected, I knew that I could use NCover to generate reports, but reports of NCover too simple, it did not give us more details on the number of ... read more...

add a comment |category: |Views: 44

tags: another

Removing Static Method Dependency via Adapter Classes(www.jerrelblankenship.com)

submitted by silentjsilentj(20) 1 year, 5 months ago

This story is about removing static method calls from methods so that you can unit test the method without the outside dependency. read more...

add a comment |category: |Views: 17

tags: another

A Simple way to run Tests with Actual Parameters(www.futureofcoding.com)

submitted by rafirafi(87) 1 year, 5 months ago

Without further ado then: the idea is to just record actual parameters from you application in JSON form, and then use that in a simple Integration/ Unit Test. There are simply three steps to this: 1. Create a generic method to write to an xml file some string values. 2. Access the xml file in your test. 3. De-serialize and Use. read more...

add a comment |category: |Views: 4

tags: another

Dean Hume - Automated Testing with Selenium 2 and NUnit(deanhume.com)

submitted by deanomachinodeanomachino(764) 1 year, 5 months ago

I have recently been looking into an awesome tool called Selenium. What is Selenium? Well, it's a suite of tools that you can use to automate web application testing across many platforms. I recently attended a Selenium Users Group at the Google London Head Offices where they discussed the many usages of Selenium. read more...

add a comment |category: |Views: 20

tags: another

Quick introduction to Pex(weblogs.asp.net)

submitted by gpeipmangpeipman(3145) 1 year, 5 months ago

Pex and Moles is new testing and code analysis technology that is created by Microsoft Research. Pex is powerful tool that helps you analyze your code, detect error situations and generate parameterized unit tests. In this posting I will give you quick and illustrated overview of Pex. read more...

add a comment |category: |Views: 10

tags: another

Continuous Testing(devtalk.net)

submitted by dmitridmitri(408) 1 year, 5 months ago

Most people are used to the idea of continuous integration environments running tests. However, I often find myself wanting to have the tests run all the time. Such a practice is called Continuous Testing, and in the .Net space we currently don’t have a solution that allows this out-of-the-box. read more...

add a comment |category: |Views: 5

tags: another

What’s the difference between Unit testing,Assembly testing,Integratio(aspdotnet-suresh.blogspot.com)

submitted by sureshdasarisureshdasari(715) 1 year, 6 months ago

What’s the difference between Unit testing,Assembly testing,Integration Testing and Regression testing? read more...

add a comment |category: |Views: 6

tags: another

Naked MVVM - simplest way of making testable WCF related code(blog.vuscode.com)

submitted by malovicnmalovicn(1590) 1 year, 6 months ago

Second real world tip regarding MVVM implementation is targeted toward pragamtic approach of how to test enable code making WCF service calls on the simplest possible way. read more...

add a comment |category: |Views: 20

tags: another