RE: what is bee-bugging testing and incremental testin...
i came across such kind of bee-bugging testing in my project. Actually i want to test whether the batch process status changes to 'Error' when there is any error in the server. To test this scenario development team deploy the build in which they explicitly threw the exception in such a way that it throws the error when the job is scheduled. so when the build is deployed with the known bugs it is called bee-bugging testing.
RE: what is bee-bugging testing and incremental testin...
1.Bee bugging means developers assign known bugs to the build to confirm whether the build is completely tested or not.
2.incremental testing best way to integrate test modules...it means test the application level by level from smaller modules to larger modules then integrates all modules to test entire functionality.
RE: what is bee-bugging testing and incremental testing?
Be-bugging refers to deliberately inserting defects in a build in order to determine the capacity of a test team to find them and to determine the likely percentage of bugs remaining in the build after testing is complete. Be-bug testing is testing which occurs on a build after it has been be-bugged.
Incremental testing refers to a testing process whereby individual modules are integrated in small refinements in order to reduce complexity.