0
votes
3answers
49 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
3answers
46 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 …
5
votes
8answers
166 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
34 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 < …
7
votes
5answers
260 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 …
2
votes
1answer
36 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?
0
votes
1answer
25 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 …
1
vote
0answers
27 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 …
1
vote
2answers
43 views
Is there any value in using abstract test classes ro run Unit and Integration testing?
I have this abstract test class
[TestFixture]
public abstract class BaseTests
{
private IRepository _repository;
public BaseTests(IRepository repository)
…
1
vote
4answers
39 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 …
4
votes
3answers
73 views
How do I write useful unit tests for a mostly service-oriented app?
I've used unit tests successfully for a while, but I'm beginning to think they're only useful for classes/methods that actually perform a fair amount of logic - parsers, doing math …
3
votes
3answers
54 views
How to automate by Firefox browser for functionality testing?
Hi all, i have to automate the firefox application to do a functionality testing,
kindly help me which testing tool i can use
thanks
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 …
0
votes
3answers
73 views
Any point in writing integration tests for a repository w/ NHibernate?
I recently spent a great deal of time pulling out a stored procedure back-end and replaced it with a NHiberante base repository. One test per repository was nice in the stored pro …
1
vote
3answers
113 views
How to create integration level test for two user interaction?
How would you test multi user interaction with Cucumber/webrat?
Meaning that there must be more than one user logged in. Good example would be simple chat application, where I wa …
