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.

137 questions
1
vote
1 answer

In Rails 5.2 how can I configure my system tests to use a selenium remote server?

My current development setup is using Windows 10 with WSL (Windows Subsystem for Linux) and Rails 5.2 app. I've been attempting for days to get my system tests to execute and I believe I've discovered that the only way to do that using WSL is to…
1
vote
1 answer

No command "rails test" in my Ruby-on-Rails application

I've recently joined a team on a Ruby-on-Rails application, and I try to audit the tests. There were no tests, so I decided to implement them in the app. After seeing around what was there, I have seen there were no command to run the tests…
Rémi Doolaeghe
  • 2,262
  • 3
  • 31
  • 50
1
vote
1 answer

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 HSQLDB; unit tests for services with mock…
Andrey Minogin
  • 4,521
  • 6
  • 38
  • 60
1
vote
2 answers

How do you define functional testing with two popular and seemingly contradictory explanations?

I've been researching the definition of functional testing and can't come across a concrete explanation and would appreciate some additional info to help reconcile this. The two main ideas I have come across are: Functional Testing as a Testing…
1
vote
1 answer

TFS - order of automata tests to execute

Supposing I have system tests: A and B, where A includes a record to a database, B tries to modify it. When A fails, B will fail as well. A and B are written as "unit tests" (test methods), A and B are tests cases in TFS as well, automated, linked…
Zoltan Hernyak
  • 989
  • 1
  • 14
  • 35
1
vote
2 answers

How to make Application.Run() testable

I am currently writing system tests for a legacy windows forms application. In my test, I call the Program.Main() method, which in turn calls Application.Run(new MainForm()); at some point. Is there a way to replace Application.Run() with…
ChrisM
  • 1,148
  • 8
  • 22
1
vote
1 answer

Examples of good system testing reports?

I'm writing some reports for software system test results, and I'm looking for inspiration. Are there any really good examples out there of test reports that I can model mine after? Note that this is system testing, not unit testing. I'm taking test…
jjkparker
  • 27,597
  • 6
  • 28
  • 29
1
vote
0 answers

Cobertura Exception in thread "main" java.lang.NoClassDefFoundError: net/sourceforge/cobertura/coveragedata/LightClassmapListener

I am trying to build a jar file with Cobertura and I am getting this error when I run the file. I downloaded all the files and put them all together in my '/lib' folder; so I have all Cobertura files there. Here is my build.properties file #…
user5412293
1
vote
1 answer

Securing travis ci environmental variables in a open-source project for system testing

I'm building an open-source library that provides an API for a 3rd party service. During which I'm learning testing, git-flow and continuous deployment and came across an problem related to securing environmental variables for open-source project. I…
1
vote
2 answers

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 scenarios. The application is started. Then the…
DragonFax
  • 4,625
  • 2
  • 32
  • 35
1
vote
0 answers

Mocking a database for system testing

I've read the following posts: Is there a way to run MySQL in-memory for JUnit test cases? Stubbing / mocking a database in .Net SQL server stub for java They seem to address unit/component level testing (or have no answers), but I'm doing system…
Orphid
  • 2,722
  • 2
  • 27
  • 41
1
vote
3 answers

Nightwatch.js loop through table

I am using Nightwatch.js to write some System Tests. Now I want to loop through all elements of a table and check their values. How can I do this with Nightwatch.js? The table has a element containing several rows . Every row has several…
Garrarufa
  • 1,145
  • 1
  • 12
  • 29
1
vote
1 answer

What is the success criteria for KLOC in each testing phases

I was wondering what is the success criteria for each of the unit/integration/system/user-acceptance testings for KLOC. Somewhere I heard that there should be no more than 5 compiler defects per KLOC. Is there such standard values for success…
1
vote
2 answers

robot framework for system testing

I am trying to digest how robot framework would help me to automate system test. I have following requirement I have multiple agents that pushing data to central server and UI connects to server to show that data.I have multiple paths to test agent…
1
vote
2 answers

E2E / Functional testing webapps with multiple simultaneous users - what's the best way to do it?

Say I have a webapp that: uses a lot of HTML5 technologies such as websockets, transitions, local database, etc. is realtime and highly concurrent, so that many bugs are only apparent with multiple simultaneous users creating conflicts with each…