Using SpecsFor.Mvc for Acceptance Testing

May 14, 2012 0

SpecsFor.Mvc is an open source tools that allows you to create automated acceptance tests using browser automation, meaning your entire application is tested from the UI all the way down to the database, exactly as a real user will use your application. However, unlike many other solutions which rely on recording actions or require you to learn a completely new framework and syntax, SpecsFor.Mvc uses familiar unit-testing tools and syntax.

Tips for Advanced Acceptance Test Driven Development

May 10, 2012 0

In this blog post, Mark Barne shares some useful tips and techniques to challenge those attempting to adopt acceptance test driven development within a corporate environment. Amongst the tips that I liked the best I will mention “Don’t clean up after tests”. Leaving the data created by the test can help immensely when issues are found. “Create unique contexts for each test”. To prevent tests stepping on each other’s toes if they are run in parallel, create a unique context for the test. “Don’t write the test at all.” If the story doesn’t have much value, or the the systems you are using are not in your control and are not test friendly then stop just short of automating it.

Effective Strategies for Distributed Testing

May 10, 2012 0

Is your team distributed? Is the team split across different time zones? Are you facing challenges in evolving a high quality product? Is your testing phase in sync with the development of the product? This video shares thoughts, experiences and case studies on how to convert the principles for distributed testing into practices. It focuses on the practices of making testing effective on distributed teams by keeping things simple, yet effective.

Unit Testing Javascript with QUnit and Sinon.js

May 9, 2012 0

In this blog post, Rob Stevenson-Leggett gives a detail presentation on how to start some simple Javascript unit tests using QUnit as the test framework and Sinon.js as a mocking framework. QUnit is a JavaScript test suite used by the jQuery project to test its code and plugins but is capable of testing any generic JavaScript code and even capable of testing JavaScript code on the server-side. Sinon.JS is a standalone test spies, stubs and mocks for JavaScript. It has no dependencies and works with any unit testing framework.

Coded UI Tests with Microsoft Visual Studio 2010

May 7, 2012 0

This video takes a detailed look at coded UI tests,which can be used to create fully automated UI tests for Microsoft Silverlight, Windows Forms, Windows Presentation Foundation (WPF), and web applications. Learn some techniques for creating robust coded UI tests which can be maintained over time along with your evolving application.

Software Testing Certifications

May 7, 2012 1

Certification is now a mainstream feature of software tester careers. Even if the International Software Testing Qualifications Board (ISTQB) seems to be the main certification body in the software testing world with a representation in more than 70 countries, other software testing organizations offers both a community for sharing knowledge and opportunities to be a certified software tester.

JavaScript Unit Testing with Jasmine

May 3, 2012 0

Unit testing JavaScript applications can seem difficult. Issues arise with JavaScript scope, asynchronous XHR requests, DOM manipulation, and all the different browsers and platforms. Sometimes, JavaScript unit testing seems unreliable, brittle, or take more time and effort than it’s worth. The good news is that dozens of JavaScript test frameworks, libraries, and test runners help solve the problems. These make implementing unit tests for your JavaScript applications quick, reliable, and easy to maintain.

1 132 133 134 135 136 172