Questions tagged as 'testes'

1
answer

Difference between acceptance test and system test

In practice, what is the difference between the acceptance test and the system test? And how to do them?     
asked by 18.11.2016 / 16:33
1
answer

Jasmine tests on separate files without breaking the describe?

I want to organize my javascript tests on separate files, but these can be part of a common module. For example: describe("Controllers", function () { describe('Move list Controller', function () { //ListController its });...
asked by 31.10.2014 / 13:06
1
answer

Android Test - Call Method

I would like to know if in the android Unit test would have the possibility to call isolated methods of the code, or if just calling activitys, buttons ... I researched in several places and I did not find anything talking about     
asked by 11.07.2014 / 13:37
2
answers

Visual Studio Test Explorer does not find the tests

I'm having a problem with Visual Studio 2013, Test Explorer is not loading the tests at any time, either after Build or through Run Tests / CTRL+R, T . Does anyone have any clue what that might be? I have the following packages installe...
asked by 06.03.2014 / 18:20
0
answers

When to carry out e2e tests in your application?

I'm starting to do e2e (end-to-end) testing, specifically on Vuejs projects with Spectron and Nightwatch . This question will have no code, because my doubt in this case is not with them, I am able to develop them theoretically well. M...
asked by 29.04.2018 / 15:36
0
answers

Facebook page does not open with click - nightwatch

Hello, I recently started working with Nightwatch.js . I want to test the click on the facebook icon. The code is this: module.exports = { "Facebook link" : function (browser) { browser .url(http://m.uni...
asked by 12.05.2016 / 12:50
0
answers

How to call web service under test with MONKEY

I'm using MONKEY to do stress testing, but my application has multiple calls to webservices in several activitys . The problem is that the monkey never arrives at the activitys that are opened after the calls of the web services. Appa...
asked by 15.12.2015 / 13:39
0
answers

Automated interface tests with Jenkins

I'm using Casper.js to test the interface of my application and I want to integrate with Jenkins , but in one test it is necessary to upload and download files (.xlsx and .zip). How do I make it "accessible" for Jenkins to upload t...
asked by 16.06.2015 / 14:25
3
answers

Is it recommended to test model validations?

My experience is with Ruby on Rails, but I think my question will fit into other cases. The ORM ActiveRecord (from Rails) allows you to validate in fields such as: Presence Uniqueness Size (of a string ) etc I'm in doubt wheth...
asked by 18.07.2014 / 13:07
1
answer

Good test practice in python

I'm working on a python test for a week, I started with unittest and some doubts came up ... Should I use a test class for each method of a class, or use a test class for each class ... and still, how to proceed with functions that do not belong...
asked by 09.07.2018 / 00:27