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
5
votes
1 answer

Automated system testing for chromecast receiver application

I am wondering if there is a good way of making automated system testing for a Chromecast receiver application? If you open the application URL in a Chrome browser, the cast_receiver library cannot find the websocket connection…
William
  • 741
  • 4
  • 9
5
votes
2 answers

How can I automatically running a large amount of perl scripts?

I need to run over 100 perl scripts (written by the former employee) on Windows for our system stability testing. Each script has several functions, and each function sends certain of linux commands to our back end system, and get results back. The…
ericyoung
  • 621
  • 2
  • 15
  • 21
4
votes
2 answers

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?
nigong
  • 1,727
  • 3
  • 19
  • 33
4
votes
1 answer

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 JBoss-Application Server with a Database at the…
martin
  • 980
  • 1
  • 13
  • 28
4
votes
0 answers

How to automate Firebase FCM push notification sending Integration Tests

I have a process that runs in a Java Cloud Function and sends notifications to Firebase's FCM using the Firebase admin sdk. I'm currently testing this with unit tests that mock FCM classes. I'd like to add system-level tests that verify that the…
4
votes
2 answers

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 and stop execution, or should it just mark this as…
4
votes
1 answer

How do you write a system test for your runtime?

Hi I am developing a runtime using Substrate-FRAME and I would like to know how can I write a system test for my runtime? The main purpose of writing a system test is to ensure that the final build is fulfilling all of the required specifications…
Jdawg287
  • 117
  • 5
4
votes
2 answers

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. Is there are way to optimize the testing effort for…
hpique
  • 119,096
  • 131
  • 338
  • 476
4
votes
1 answer

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 tried, I wrote custom, application-specific test…
mdma
  • 56,943
  • 12
  • 94
  • 128
4
votes
1 answer

Unit Testing of vb.net project

I am asked to do testing of the project which I've made, the question is like that: Testing (Test case designs are to be included separately for Unit testing, Integration testing, System testing; Reports of the outcome of Unit testing, Integration…
4
votes
1 answer

Visual Studio: How can I get my test project to start the web project it depends on

I have a WCF application in VS2012. We have also added a testing project for doing unit tests. This is all working well In addition to this, I need to add another test project for doing system tests, the idea here is that the web service would…
jazza1000
  • 4,099
  • 3
  • 44
  • 65
4
votes
5 answers

System Testing a desktop application

I've got a desktop application written in C# created using VS2008 Pro and unit tested with Nunit framework and Testdriven.net plugin for VS2008. I need to conduct system testing on the application. I've previously done web based system tests using…
errorprone
  • 421
  • 7
  • 10
4
votes
1 answer

Creating a testing strategy to check data consistency between two systems

With a quick search over stackoverflow was not able to find anything so here is my question. I am trying to write down the testing strategy for a application where two applications sync with each other every day to keep a huge amount of data in…
KD.
  • 2,015
  • 3
  • 28
  • 59
3
votes
3 answers

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 _fireFoxWebDriver.Navigate().GoToUrl(UkPaBaseUrl + "loginregister.aspx"); …
The Light
  • 26,341
  • 62
  • 176
  • 258
3
votes
4 answers

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() { driver = new InternetExplorerDriver(); …
The Light
  • 26,341
  • 62
  • 176
  • 258
1
2
3
9 10