Questions tagged as 'testes'

2
answers

What is the difference between mock & stub?

In which situations should be used? What's the difference between them?
asked by 13.10.2014 / 19:56
1
answer

Denial of service with stress test

First of all, a stress test, according to this response from @guiandmag is:    The Stress Test consists of subjecting the software to extreme situations. Basically, stress testing is based on testing the limits of the software and evaluatin...
asked by 21.01.2016 / 12:57
6
answers

Methods to test websites in different browsers?

I would like to know methods for testing websites in different browsers, without the creation of virtual machines.     
asked by 11.02.2014 / 20:46
2
answers

Perform Stress Test in C #

I have the following scenario: There is a Windows Service , done in C #, which is used to synchronize data from a local base with a cloud base and need to perform some stress tests and load, with this, I thought to perform the following test:...
asked by 22.06.2017 / 19:25
2
answers

What is cyclomatic complexity?

Regarding the complexity of algorithms, I noticed that there are several quotes about cyclomatic complexity . What is cyclomatic complexity? In what situation is it important to analyze this complexity?     
asked by 29.03.2017 / 18:59
2
answers

Make decorator override of Python mock

I have a class TestCase where all the tests, except one, need to do the same patch of an object. I'm using Python Mock , and I did the following: @mock.patch('metodo_alvo', mock.Mock(return_value=1)) class Tests(TestCase): @mock.p...
asked by 08.01.2014 / 23:19
1
answer

What are the differences between mocks and fakes?

When we implement testing on a software, Mocks and Fakes are two techniques or approaches to isolate code being tested from the rest of the system. Without going into the subject: Mocks are like empty shells with predefined behaviors,...
asked by 02.02.2016 / 02:09
1
answer

How to make DbUnit recognize the Postgresql POLYGON data type?

I have the following domain of type polygon in the database: CREATE DOMAIN "global".polygon AS pg_catalog.polygon; The following table that uses this domain: CREATE TABLE user.area_geom ( id_area_geom serial NOT NULL, polygon g...
asked by 13.12.2013 / 17:30
2
answers

What is a Regression Test?

In the subject of Software Testing the teacher approached a term called Regression Test , this within the discipline of software testing. So this term gave me some doubts about this software. Questions What would the Regression Test be?...
asked by 27.03.2018 / 16:01
1
answer

What is the difference between test and debugging?

In the book "Introduction to Software Testing" by Ammann & Offutt mentions in p.32 the 5 levels maturity models of software testing:    Level 0 - There is no difference between testing and debugging.    Level 1 - The purpose of a test i...
asked by 27.08.2016 / 04:09