3
votes
2answers
778 views

Automated testing in RPG (or other ILE languages)

we have quite a lot of RPG-programs here, and we do a lot of automated testing, but we are not very good yet in combining those two. Are there good ways to do automated testing on RPG programs -- or ...
0
votes
2answers
77 views

watir: Fetch params[:id] from URL

I am using watir for testing my rails 3 webapplication which is working fine. My problem is, my current page url is localhot:3000/sites/535/ecosystem/new. NOw: I want to logout from the page and ...
0
votes
0answers
63 views

Does it make sense to use unit test frameworks for integration tests?

Unit tests are meant to test individual pieces of code (usually single methods) in an automated fashion. Unit test frameworks such as NUnit or MSTest are designed to support these kinds of tests. ...
1
vote
1answer
132 views

Finding suitable tests for changeset

We are using cobertura as code coverage tool. The tests are done using RFT-Rational Functional Tester (500 odd tests). Running RFT takes quite long time. To encourage developers to run the RFT tests, ...
1
vote
1answer
447 views

How to write unit/integration tests in python with rabbitmq?

I have a python project written using rabbitmq, and I'm wondering how I should write unit tests for it/what are best practices. Since the code requires a rabbitmq server to be running in the ...
8
votes
3answers
1k views

Using msbuild.exe to push Test results to TFS 2010, but do not see the results show up

Using Mstest.exe to run a collection of unit tests and push the results into TFS gives the following output as expected: MSTest command: "C:\Program Files (x86)\Microsoft Visual Studio ...
0
votes
1answer
774 views

WPF - PRISM (CAL) - automated functionnal testing

I'm currently new in a project that was started 1 year ago. This project is using C#, WPF, PRISM (CAL), Entity Framework, LINQ, etc. The application is done using the MVVM pattern. There are some ...
4
votes
2answers
943 views

What is the best strategy for BDD testing which relies on data

What are some strategies for writing BDD tests, which can test behaviour that relies on certain data being in the system? For example, say I was working with the following scenario: Feature: Search ...