Duplicate:
Testing a website for cross-browser/multiple-version support
How do you test visual components
I recently talked to a colleague about a tool we use at work for system testing web applications. The colleague then raised the question as to whether we tested the appearance of the application.
Does anyone else ...
I often have to work with fragile legacy websites that break in unexpected ways when logic or configuration are updated.
I don't have the time or knowledge of the system needed to create a Selenium script. Besides, I don't want to check a specific use case - I want to verify every link and page on the site.
I would like to create an a...
I would like to make integration tests and system tests for my applications but producing good integration and system tests have often needed so much effort that I have not bothered. The few times I tried, I wrote custom, application-specific test harnesses, which felt like re-inventing the wheel each time. I wonder if this is the wrong...
4 major OS versions: 1.5, 1.6, 2.1 and 2.2 (I guess we can safely ignore 1.0 and 2.0 now)
3 screen densities: ldpi, mdpi, hdpi
3 screen sizes: small, normal, large
Lots of system testing scenarios.
Is there are way to optimize the testing effort for an app that has to target all Android devices? What's the minimum number of emulators...
I'd like a junit runner that executes all @Before methods, then all @Test methods, then all @After methods.
This is how my System-Tests work. The @Before methods are run, to setup the test data and scenarios. The application is started. Then the @Test methods are run with the application running in the background. Those @Test methods ca...
My application
I have an application design that looks like this:
web application layer - asp.net MVC app with controllers and views that use POCOs and call services
service layer - business processes that use POCOs and call repositories
data layer - repositories that use POCOs and communicate with the model in the form of EF model wh...