1
vote
2answers
51 views
+100
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 AT …
3
votes
8answers
107 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 b …
0
votes
0answers
38 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 te …
1
vote
3answers
54 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 functionali …
0
votes
3answers
61 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 Comp …
0
votes
0answers
21 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 b …
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 lik …
0
votes
3answers
56 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 th …
7
votes
5answers
285 views
LINQ to SQL Cannot create database [Schema Permissions]
For some integration tests I want to use LINQ to SQL to drop/re-create the test database. I've had this working fine before, however in this project the database is split up into s …
1
vote
1answer
63 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 integrati …
0
votes
3answers
66 views
Integration Testing Authlogic before_filter :require_admin_user Problem
I'm not able to access urls in my integration test that require an admin user despite creating an admin user session. My test fails on a 302 error.
class NewsItemsController < …
2
votes
1answer
42 views
(Selenium) How to test whether a download of a certain file was started?
I want to test whether a certain action results in a file download (a) at all, and (b) with the file having a certain name.
Is there any way to use Selenium to do this?
49
votes
17answers
2k views
What Makes a Good Unit Test?
I'm sure most of you are writing lots of automated tests and that you also have run into some common pitfalls when unit testing.
My question is do you follow any rules of conduct …
1
vote
4answers
44 views
How to initiate automated testing?
I started as a software engineer at the company I'm currently at. Over time, I was either the only one willing to or capable of taking responsibility for various systems, and so I …
0
votes
1answer
31 views
What’s the point of automated integration test here?
Hi,
Yes, I did read the 'Related Questions' in the box above after I typed this =). They still didn't help me as much as I'd like, as I understand what the difference between the …
