Skip to main content

Questions tagged [manual-testing]

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

How to provide test code for manual testing?

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
161 views

What do I call "unit tests" that are specifically developed during tinkering?

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
152 views

Why do we have to copy all files into dedicated folder when doing unit tests?

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
267 views

Software Quality - preventing regressions with documentation

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
225 views

Is is worth the time to create a list of manual regression tests for a legacy application?

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
121 views

Testing an underwriting engine

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
539 views

Can a unit test replace works-on-my-machine when completing work?

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

Post-Condition in test cases

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

Problems in QA Environment [duplicate]

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
539 views

Defects Review and Management

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
343 views

Domain analysis for discrete values - ON and OFF points in these cases

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
339 views

How to show to management that unit testing is cheaper in the long run than manual testing? [duplicate]

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
261 views

Testing interaction with large CRM database

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
542 views

Is it dangerous to substitute unit tests for user testing? [closed]

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

How much detail is in a good UI regression test?

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
  • 14.9k
9 votes
4 answers
3k views

Do we need test data or can we rely on unit tests and manual testing?

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
132 views

Managing manual test protocols [closed]

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
747 views

Does Unit Test increase productivity? [duplicate]

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