Skip to main content

Questions tagged [manual-testing]

Filter by
Sorted by
Tagged with
2 votes
2 answers
208 views

I have written a class that implements some BLE scanning functionality. I have also written some test code that helped me to manually verify my scanner works as intended. Now I want to somehow ...
LWChris's user avatar
  • 129
1 vote
2 answers
171 views

When developing a new section of code functionality with modules I'm not familiar, I'll often create a set of unit tests that are for "tinkering" and interactively analyzing the results in ...
Turtle1363's user avatar
-4 votes
1 answer
165 views

I'm using Mocha Library and the Library by default use a Test folder. So, I have to copy the code I written in production into Test folder when doing Unit Tests with Mocha. Anyone can think reason ...
sqlbie's user avatar
  • 3
2 votes
3 answers
310 views

I lead a small but growing team of developers on an iOS application with a server backend. We have comprehensive unit and integration tests on both ends. As the product grows, I want the onus of "...
dtj's user avatar
  • 139
0 votes
3 answers
252 views

I am part of a new dev team that is assigned to work on a legacy app. The app currently has no regression or automated unit, integration and system tests. Due to technical debt and convoluted ...
user avatar
0 votes
2 answers
135 views

I made a post in relation to this question on the SQA here but thought I would post on this board as it's more active. I'm testing an underwriting engine with a front-end interface that asks a ...
ahu77's user avatar
  • 21
8 votes
5 answers
566 views

I've made a small change to an integration component and have prepared unit tests to cover my work. All new and existing unit tests are passing. It will take a substantial amount of time to configure ...
LazyCoder's user avatar
  • 617
5 votes
1 answer
5k views

Is it fine not have any post-condition in a test case? For example, there is an employee information system or module and an employee can login into the system and views his/her profile and logs out. ...
aaqilniz's user avatar
0 votes
1 answer
2k views

At least few times a week I have to track down a bug that would not occur in a production\client environment. 95% of the time I can tell that its a QA configuration\environment problem just by looking ...
ARs's user avatar
  • 101
0 votes
2 answers
564 views

The doubt or question i have is something every developer might be facing time to time. it is related to testing and development team and their perspective. I have observed that most of the Defects ...
user130934's user avatar
0 votes
0 answers
363 views

Following my previous question (with great answer from Bart van Ingen Schenau), I noticed a discrepancy I could not wrap my head around: Bart mentioned that: The point ON the boundary is by ...
user144171's user avatar
0 votes
3 answers
360 views

In the company I work for there is a requirement that all the code should be covered by a test of any kind because they want to have as few user reported defects as possible. With this is mind I ...
Ignacio Soler Garcia's user avatar
1 vote
1 answer
270 views

In our company we have two large systems, basically they are scoring and CRM. Both have large SQL Server databases running on Windows servers on the intranet. These two databases are managed by other ...
scriptin's user avatar
  • 4,432
0 votes
4 answers
575 views

Is it dangerous to substitute unit tests for user testing? A co-worker believes we can reduce the manual user testing we need to do by adding more unit tests. Is this dangerous? Unit tests seem to ...
MushinNoShin's user avatar
7 votes
3 answers
1k views

We use a detailed step-by-step user-interface regression test for our commercial web application. It has a "backbone" test for the most used / most important parts of the system, with optional tests ...
GlenPeterson's user avatar
9 votes
5 answers
3k views

We're currently working on a medium/large PHP/MySQL project. We're doing unit testing with PHPUnit & QUnit and we have two full time testers that are manually testing the application. Our test (...
Christian P's user avatar
  • 1,952
4 votes
2 answers
147 views

We have to organize a very long list of manually running tests. Currently we use Word documents, print them out check them off etc. Ugh-ly but works, with problems. Problems with the current solution ...
peterchen's user avatar
  • 1,127
6 votes
4 answers
769 views

Possible Duplicate: TDD vs. Productivity In most computer science books such as Clean Code we are told to write good Unit Tests in order to increase productivity when updating project or writing ...
Zonata's user avatar
  • 163