0
votes
2answers
24 views
Testing framework for data access tier
Is there any testing framework for Data access tier? I'm using mysql DB.
3
votes
4answers
156 views
How do you test an Android application across multiple Activities?
We are building a complex Android application consisting of many screens and workflows spread across many Activities. Our workflows are similar to what you might see on a Bank's ATM machine, for …
0
votes
2answers
34 views
Testing rails routes: can’t find ActionController::Assertions::RoutingAssertions methods
I'm trying to test the routes on my rails 2.3.4 application. There are several sites that explain how to test routes, including the rails docs, but I'm getting errors following the instructions.
…
0
votes
1answer
15 views
Can some one please provide the practical examples of stubs and drivers?
Hi All,
I need some practical examples of stubs and drivers with respect to top-down and bottom-up approaches to testing. I don't require code here. Just the scenario based examples.
1
vote
8answers
142 views
Why using Integration tests instead of unit tests is a bad idea?
Let me start from definition:
Unit Test is a software verification and validation method in which a programmer tests if individual units of source code are fit for use
Integration testing is the …
0
votes
1answer
6 views
How do I create reliable integration tests with an Active Directory role provider?
I recently refactored some code in an Active Directory role provider to remove support for multiple domains. In the process my integration tests broke in ways that I didn't expect. The tests do not …
3
votes
8answers
127 views
Integration Testing for a Wep App
I want to make a full integration testing for a web application. I want to test many things like AJAX, positioning and presence of certain phrases and HTML elements using several browsers. I'm seeking …
0
votes
0answers
52 views
Unit Testing CodeIgniter with Simpletest - very few tests
Hello all! On our development team, we decided to give Unit Testing a try. We use Simpletest. However, it's been a tough road. After a week, I only have created 1 unit test that tests a certain helper …
1
vote
3answers
56 views
When not to Use Integration Tests
I am writing an application that uses 3rd party libraries to instantiate and make some operations on virtualmachines.
At first I was writing integration tests to every functionality of the …
0
votes
0answers
12 views
Why does my session expire when using PerformanceTest and not IntegrationTest?
OK, I am writing performance tests and am having trouble getting my session to persist like it does in integration tests. As I understand it, PerformanceTest is a child of IntegrationTest and any …
0
votes
0answers
26 views
Integration Testing w/ Acegi Protected Controllers
In a Grails app, how can I mock an authenticated user so that I can write integration tests for controller actions, which are protected by Acegi?
For example, let's say I have a blog application, and …
1
vote
1answer
74 views
Integration tests failing in Grails & App Engine
I am using Grails with the App Engine plugin and JPA persistence. When running
grails test-app
my unit tests run perfectly, but I receive the error below when the integration tests start.
Is …
0
votes
3answers
73 views
Automating Integration Tests: Use xUnit?
I'm looking into how best to automate integration tests (by which I mean complete use cases entirely within our application)
The questions
Correct Approach for Unit Testing Complex Interactions
…
0
votes
3answers
60 views
How to test drive a networking application with custom protocol?
I'm currently developing two Java networking applications for school projects. One over TCP and the other one over UDP. In both I have to implement simple custom protocol.
Even though I'm trying …
5
votes
8answers
167 views
How to determine which code in a project/solution is the most often used?
If I have an existing solution containing multiple c# projects, are there any static analysis tools that can help me determine which areas of code are the most often used?
I'd like to use this …
