Questions tagged as 'testes'

3
answers

In practice, what is a system test and what should it cover?

Among the most well-known tests then the unit tests that test each class of the system individually, the integration tests testing two distinct parts of the system, such as a DAO, and the database. But what about the system test? What is it,...
asked by 15.02.2017 / 04:55
2
answers

What is the concept of Stubs and Drivers in integration tests?

What is the concept of driver and stub in integration tests, what is the difference between them? In which situations should be used?
asked by 07.10.2016 / 18:12
1
answer

How is the linux kernel or programs written in C tested?

When we use Java language, we use JUnit to test the codes. But the codes written in C, like the Linux , how is it tested?     
asked by 23.03.2015 / 20:41
1
answer

Error executing test project

I added a test project in my solution to test the methods of my MVC application. I created a base class, for the other classes with tests to inherit from it, which contains the creation of the context ( IdentityDbContext ). In the c...
asked by 19.11.2015 / 14:25
1
answer

How to test an asp.net mvc controler using Moq and Entity Framework 6

My controller: [Authorize] public class DominioController : Controller { private IDominioDB _db; public DominioController(IDominioDB db) { _db = db; } // GET: Dominio publi...
asked by 06.10.2015 / 03:09
2
answers

What kind of tests can I still do in this code?

I'm doing a test run in a simple bank application, but I do not know what kind of test I can do in that system to cover 100% of the code, it's only covering 61%. I already did all the tests with lower values, equal and higher, I did with anonymo...
asked by 25.11.2014 / 13:19
1
answer

Is an instrumentation test an integration test?

I've seen some videos where they explain how to test the call of an activity for another activity. I did the following test and, after a reflection, I was not sure if the test I performed was integration, instrumentation or functional testing...
asked by 27.09.2017 / 12:36
1
answer

How to automate tests? [closed]

It is common every time deploy occurs a bug go together, often only noticed months after that change. In order to solve this, I want to know if it is possible to test ALL main functionalities in an automated way? I say, before going to product...
asked by 30.04.2015 / 21:52
0
answers

What are software tests? When should we use them? [closed]

I have read other questions about this and saw that there are automated testing tools, predict possible software / application errors etc. What I would like to know is what kind of project / system / software / application it is essential to...
asked by 04.06.2014 / 19:43
2
answers

Testing asynchronous requests

How can I make asynchronous requests in iOS TestCases? Example: -(void)test { UserModel* user = [UserModel sharedInstance]; [user requestUserInformationWithCompletion:^(NSError* error, NSDictionary* info){ if(error) {...
asked by 11.02.2014 / 16:55