tags:

views:

122

answers:

6

What languages do your testers use for writing complex testing scripts/simulators?

A: 

In one shop I was in we used C# simply because it was supported by the VS IDE and it was what we knew. Never ran into a case where it didn't do what we needed. In one case we wrote a function that used a simple Writeline statements to generate C# code for new test cases.

AaronLS
+3  A: 

At the last place I worked at the testers were using TestComplete from AutomatedQA. If I remember correctly, the application lets you use clones of different languages. To quote the feature list (VBScript, JScript, DelphiScript, C++Script or C#Script.) (Note: it says C++Script, NOT C++). It was encouraged that the testers used C++Script because the language that was predominantly used in the development of the software was C++.

Patrick Gryciuk
A: 

The place that I work at uses VBA because the test platform is TestPartner. It does not mesh so well since the code is written in C# and JAVA. But then again the developers and testers do not touch the same code.

bogertron
A: 

I've played with Fitnesse with some success. It allows your testers to define tests in a wiki by decalring inputs and expectations, and then declaring a fixture to run against the input. One issue: you may find the initial effort to write the fixtures and train the testers leaves you with less hair than you would like

Rich Seller
A: 

We use the robot framework which uses keyword driven tests. The keywords themselves can be written in python, jython and java.

Bryan Oakley
A: 

Hey.
Language depends on the tool. For example in my place QuickTestPro is main tool so VBScritp is the one.
on the other hand it happened for me to use powershell or just C# and it was fine.

yoosiba