A Specifications-Based Mutation Engine for Testing Programs in C#

January 30, 2012 0

This article presents a simple and efficient engine which produces mutations of source code written in C# with helps testing it. The novelty of this engine is that it produces mutations that do not contradict with the specifications of the program. The latter are described by a set of pre- and post-conditions and invariants. The engine comprises two parts, a static analysis and syntactic verification component and a mutation generation component. Preliminary experiments showed that the proposed engine is more efficient than a simple mutations generator in terms of producing only valid mutations according to the specifications posed, thus saving time and effort during testing activities.

Python Unit Testing

January 26, 2012 0

This article presents a strategy for unit testing in Python, using a set of utility functions that converts to and from Roman numerals. The author discusses the benefits of a Test-Driven Development (TDD) approach and propose a detailed testing process for all the cases of the functions.

Selenium Simple Test Introduction

January 25, 2012 0

SST or Selenium Simple Test is an open source web test framework that uses Python to generate functional browser-based tests. The tests are made up of scripts, created by composing actions that drive a browser and assert conditions. You enjoy the flexibility of the full Python language, along with a convenient set of functions to simplify web testing, but the commands are simple and flexible enough that the tool can also be used by non-programmers.

Database Testing Tips

January 23, 2012 0

In this blog post, Jens Schauder shares some tips based on experience to improve the testing of database code. People seem to understand the need to test their code, but apparently this is not yet the case for the the database code, because database tests tend to be slow, interdependent and hard to maintain

Software Testing Training Survey

January 20, 2012 1

A recent Methods & Tools poll asked the following question: “How many weeks of training on software testing have you completed in your professional life?”

Acceptance Software Testing with Robot and Chef

January 20, 2012 0

This blog post give a detailed code on how to distribute Robot automated acceptance tests to several virtual box instances using Chef. Pavlo Baron explains how using Vagrant and VirtualBox as a poor’s man virtualization and wiring with Chef, you can run in parallel your acceptance testing suite in a distributed environment.

4 Steps to Faster Ruby on Rails Tests

January 18, 2012 0

This video explains how to use the principles of Object Oriented Design to improve your Ruby on Rails code, supercharge your tests and find your coding rhythm.

1 127 128 129 130 131 160