Skip to main content

Questions tagged [functional-testing]

Filter by
Sorted by
Tagged with
4 votes
3 answers
314 views

Not long ago while I was exploring for solutions to test without mocks I've found out about the functional core, imperative shell architecture. It sounds great, I also think that it would play nicely ...
 sentientbottleofwine's user avatar
-3 votes
2 answers
401 views

In tests, state verification or collaboration verification is usually undertaken. One of the drawbacks of this approach is the coupling of tests to the design of constructs. Consequently, when ...
Kaveh Shahbazian's user avatar
3 votes
1 answer
97 views

I'm writing the sort of tests which go through a whole user scenario e.g. User clicks "edit profile" User edits their name etc. However, I find myself needing often needing to test small ...
samfrances's user avatar
  • 1,095
5 votes
2 answers
470 views

I'm currently reading "Composing Software" by Eric Elliott, which is about functional programming in JavaScript. He states that if you compose multiple functions together, and that these ...
user1474326's user avatar
5 votes
2 answers
1k views

I have an API I wrote that I want to test at the API level. Given that I'm testing from an external point of view, how can I manage data sets for each tests? The simplest solution I could come up ...
Shoe Diamente's user avatar
9 votes
4 answers
7k views

Assume a client is making a request to an API endpoint that returns a JSON response where the structure and data change depending on whether the request was successful or not. Possible responses may ...
Peppermintology's user avatar
3 votes
3 answers
3k views

Let's say your company sells software that comes with customizable text, and your team's job is to customize it. The client engagement includes a contract in which the client specifies all of the text ...
John Wu's user avatar
  • 27k
1 vote
1 answer
1k views

I understand the concept of mocking API responses and their uses in unit testing, but in functional/integration testing, I actually don't want to mock because that defeats the purpose. For example, ...
john's user avatar
  • 141
2 votes
1 answer
206 views

I have a Python script which is responsible for updating SVN repository (in a nutshell) and checking it. Now I'd like to write some functional tests for the script. To check whether SVN update has ...
mchfrnc's user avatar
  • 121
3 votes
5 answers
622 views

I've inherited an application that has a suite of tests that drive me batty. But one of the design decisions that this test suite takes that completely leaves me scratching my head is the separation ...
salvobeta's user avatar
1 vote
2 answers
2k views

When writing java tests for an application, be they unit tests or testing a broader scope, the java community tends to model fixtures in terms of object factories that produce fixtures of a defined ...
Kiriakos Krastillis's user avatar
0 votes
1 answer
305 views

Given the official tutorial of angularJS, https://docs.angularjs.org/tutorial/step_07#testing It is apparent that it only tests the controller's states (e.g. its model) when events happen (e.g. ...
Xegara's user avatar
  • 191
3 votes
4 answers
1k views

For an example, In a testing phase if i got a defect which is due to some delayed job restarting,can I raise it as a bug? In our project,devteam merges and deploy their codes into test site. usually ...
user258755's user avatar
1 vote
3 answers
1k views

In a project, its program is written in C++, and implements some http service. The testing program for the project is written in Python. The Python testing program doesn't call the C++ project ...
Tim's user avatar
  • 5,555
5 votes
1 answer
2k views

I'm doing SQA work for several Kendo-based sites that have many tables (some are hand-made by our devs). These tables have a lot of rows, columns, pages, and data filled in them- so I'm basically ...
8protons's user avatar
  • 1,389
-1 votes
1 answer
231 views

It is quite easy to cover your code by writing tests first using TDD and you know that when to stop once you implemented a feature. For me it is trickier to decide how many functional tests to write ...
Eds's user avatar
  • 117
6 votes
5 answers
3k views

We are using GitHub for managing source code and waffle board for managing workflow/issues. Right now when we test the system using custom written test cases, it generates a CSV file. We want to be ...
user3711455's user avatar
3 votes
1 answer
374 views

We have System A (an application and a database) that is built for a specific business department and therefore has business aligned data model and table structure. System A is a mission critical ...
rro's user avatar
  • 279
1 vote
2 answers
628 views

First of I'm not sure if I chose the right name for my question, I'm not sure if they are functional tests or integration ( or other ). I'm talking about tests which test (or it should) the app from ...
Marius.C's user avatar
  • 119
5 votes
3 answers
2k views

I am writing about testing, and I am confused about the following: What exactly is Black-Box testing? Are functional testing and Usability testing two different types of testing, and are they both ...
Ali Shaikh's user avatar
3 votes
3 answers
1k views

I have a general question about testing search applications, and what I'm looking for is pointers to resources on the topic that I can go and research on my own. I've tried semi-informed, semi-...
RuslanD's user avatar
  • 731
4 votes
0 answers
190 views

Testing code for correctness is important. Whether you do strict TDD or not, tests are really the only way a project can scale in size beyond a point where every team member can reasonably keep all ...
David Cowden's user avatar
  • 2,913
1 vote
3 answers
380 views

I've a functional test using Junit which tests delivery of xml file to an end-point. XML file is sent by client, so I copied it to a test folder, read it from there in my test and do asserts. We ...
Charu Khurana's user avatar
0 votes
1 answer
3k views

This has been bothering me for a while. Security, performance tests etc. are all done typically using the black box approach. But these are nonfunctional,while black box is called functional testing. ...
John V's user avatar
  • 4,946
7 votes
4 answers
866 views

I have recently been looking at some testscripts which looks a bit like ... try { receiveSomething(); // something was received even though it shouldn't failTest(); } catch (TimeoutException e) ...
Theodor's user avatar
  • 309