Tagged Questions
The system-testing tag has no wiki summary.
10
votes
3answers
387 views
JQuery & IE8 crash detection
I was recently asked to help debug an issue with a website that caused IE8 to crash under certain conditions. The company that owns the website was unable to reproduce the problem, but they were ...
7
votes
9answers
1k views
Automated link-checker for system testing
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 ...
5
votes
3answers
347 views
How to write integration and system tests in Asp.net MVC
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 ...
4
votes
2answers
76 views
Automated Test case Execution - when to stop
We have around 100 test cases for our system. We are trying to build an automated test suite for it.
Say while running the tests the 25th test fails. Should our automated test system bail out here ...
4
votes
2answers
168 views
Optimizing Android testing effort
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.
...
4
votes
1answer
233 views
Reducing the pain writing integration and system tests
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 ...
2
votes
1answer
54 views
Testing a Django driven web app
I have a web app that opens and closes background process on the server. I want to simulate multiple users logging in and out of the site as well as pressing all the buttons (general interaction). I ...
1
vote
3answers
44 views
How to run Selenium system tests without requiring to open the browser?
I have a test method created using Selenium, something similar to this:
[TestFixture]
public class Test_Google
{
IWebDriver driver;
[SetUp]
public void Setup()
{
...
1
vote
1answer
38 views
Are there an non-static equivalents to MSTest's [ClassCleanup] & [ClassInitialize]?
Are there an non-static equivalents to MSTest's [ClassCleanup] & [ClassInitialize]?
I am using MSTest for some system/integration level tests, and I don't want to have to worry about cleaning ...
1
vote
0answers
73 views
Test framework for system test
i'm looking for a test framework (preverably in Java) to create system tests.
The system i need to test is an ESB offering multiple http endpoint for receiving and pushing messages, a JMS Server and a ...
1
vote
1answer
40 views
Should I include system tests in a Spring project?
My Spring web project consists of:
util classes;
repositories;
services;
controllers.
The tests are as follows:
unit tests for util classes;
spring integration tests for repositories with ...
1
vote
1answer
134 views
junit suite tests, in phases: All @Before, then all @Test, then all @After
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 ...
0
votes
2answers
47 views
What's the alternative to use Thread.Sleep when working with Selenium in system testing?
I have a TestMethod using Selenium as below:
[TestMethod]
public void ShouldSendPasswordReminder()
{
// go to loginregister url
...
0
votes
1answer
45 views
Testing of cloud systems
I'm researching testing in the cloud and am looking for some of the commercial angle of it, such as Providers, project example, ramp up time etc.Is there anything out there about testing of ‘cloud ...
0
votes
2answers
55 views
The differences between Acceptance Testing and System Testing?
Are they the same?
Or, System Testing is performed by the testers and/or programmers while the Acceptance Testing involves with the customer?
0
votes
2answers
53 views
unit, integration, system tests for Codeblocks IDE
I recently was given control of a project that is based on the Codeblocks IDE. This project consists of large make scripts, gcc for motorola microcontrollers, and example C programs. The code is ...
0
votes
2answers
48 views
Configuring system tests in junit
We currently have a dedicated tool for running system tests on our web services, but I've been thinking of re-writing it to be hostable within jUnit4.
This would give us several advantages, including ...
0
votes
2answers
76 views
Testing the Appearance of Web Applications
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 ...