Questions tagged [system-testing]

System testing of software or hardware is testing conducted on a complete, integrated system to evaluate the system's compliance with its specified requirements.

System testing of software or hardware is testing conducted on a complete, integrated system to evaluate the system's compliance with its specified requirements. System testing falls within the scope of black box testing, and as such, should require no knowledge of the inner design of the code or logic.

126 questions
44
votes
9 answers

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 script. Besides, I don't want to check a specific…
ctford
  • 7,009
  • 4
  • 31
  • 51
16
votes
3 answers

Good automated system testing framework in python

I am looking for good End to End testing framework under python, where the tests can be written in python and managed in a comfortable way. I know there are many unit testing frameworks, but I am looking for bigger scope, something like test…
GabiMe
  • 16,471
  • 25
  • 71
  • 106
13
votes
1 answer

Are there non-static equivalents to MSTest's [ClassCleanup] & [ClassInitialize]?

Are there 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 & initializing the connection in the tests. Example…
Adam Kalnas
  • 1,048
  • 1
  • 11
  • 23
11
votes
3 answers

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 receiving many reports from affected users. I was…
Mike
  • 20,127
  • 2
  • 38
  • 65
11
votes
3 answers

Testing framework for functional/system testing for C/C++?

For C++, there are lots of good unit test frameworks out there, but I couldn't find a good one for functional testing. With functional testing, I mean stuff which touches the disk, requires the whole application to be in place etc. Point in case:…
Anteru
  • 18,283
  • 10
  • 72
  • 117
11
votes
6 answers

difference between functional testing and system testing?

I heard that system testing has two types 1)functional Testing 2)Non functional testing But later in another website i have seen below statements In the types of functional testing following testing types should be cover: Unit Testing Smoke…
maho
  • 203
  • 2
  • 3
  • 8
10
votes
1 answer

Run single system test

To run a single test in Rails, we normally do: rails test TEST=test/system/invitation_test.rb But that doesn't work with system tests. Neither do this work: rails test:system TEST=test/system/invitation_test.rb With both those commandos above, all…
9
votes
1 answer

Difference between feature spec and system spec

Is there a difference between a feature spec and system spec? Both seem to use Capybara to test the full application yet they have different docs on RSpec.
bgcode
  • 24,347
  • 30
  • 92
  • 158
9
votes
3 answers

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 processes that use POCOs and call repositories data layer…
Robert Koritnik
  • 97,460
  • 50
  • 267
  • 388
8
votes
1 answer

How can I run headless browser system tests in Rails 5.1?

The documentation for Rails 5.1 system tests is a bit sparse. I'm unable to get headless tests that execute javascript running. I think one approach entails installing and running xvf. But this is more manual setup than I'm used to when running…
John Bachir
  • 21,401
  • 22
  • 137
  • 203
8
votes
3 answers

System testing vs Acceptance testing - Difference in test cases

I'm a bit confused about the real difference between system testing and acceptance testing. When I search this topic the answers differ and I fail to see how the testcases can be vastly different. Facts I've discovered: System testing is conducted…
John Snow
  • 4,954
  • 3
  • 31
  • 43
7
votes
2 answers

System tests framework in Java

Looking for a framework for system testing in java. We have a web application running under tomcat (Spring, Hibernate, etc..) with a well defined API that can be easily exposed as RMI (or any other way). We want to test this API. The framework…
Artiom Gourevitch
  • 776
  • 11
  • 22
7
votes
1 answer

Is there a good tool for documenting/monitoring System Tests?

I'm looking for a tool to design, document, and monitor System Tests for a product. The basics of what I need are: 1) A tool that can represent some kind of Inheritance between tests (i.e., one test which sets up another or somesuch). 2) A tool that…
Elimis
7
votes
2 answers

How can I stop all the currently ongoing Ajax queries that DataTables instance have started?

Brief Description Resetting a test server to a known state causes my tests to fail due to Ajax requests launched by DataTables instances being ongoing at the time the server is reset. I'd like to prevent this by stopping the DataTables requests…
Louis
  • 128,628
  • 25
  • 249
  • 295
5
votes
1 answer

Rails Password Reset Test Passes When Run Individually But Fails When Running the Entire Test Suite

I am testing the password reset flow that uses the Clearance authentication gem and I can't figure out how to write a test for this that passes when I run the entire test suite. The test passes when I run it individually but fails when I run the…
1
2 3
8 9