先决条件–软件测试
1.猴子测试:
猴子测试是一种软件测试,它是根据一些随机输入执行的,没有任何测试用例,并检查系统的行为并确认系统是否崩溃。因此,根据猴子测试的模式,也称为随机测试,模糊测试或随机测试。这是一种随机测试,此测试中未使用任何测试用例。在Monkey Testing中,用户或测试人员或开发人员可以测试系统以确认其是否执行了所需的操作集。
2.大猩猩测试:
大猩猩测试是一种软件测试,它会根据一些随机输入反复对模块执行测试,并检查模块的功能并确认该模块中没有错误。因此,根据大猩猩测试的模式,也称为酷刑测试,容错测试或挫折测试。这是一项手动测试,并且需要重复执行。在“大猩猩测试”中,测试人员和开发人员共同协作以重复测试模块的功能。
猴子测试和大猩猩测试之间的区别:
S.No. | MONKEY TESTING | GORILLA TESTING |
---|---|---|
01. | Monkey testing is a type of software testing which is performed based on some random inputs without any test cases and checks the behavior of the system and confirms whether it crashes or not. | Gorilla Testing is a type of software testing which is performed on a module based on some random inputs repeatedly and checks the module’s functionalities and confirms no bugs in that module. |
02. | Monkey testing is a type of random testing and no test cases used in this testing. | Gorilla Testing is a manual testing and it is repetitively performed. |
03. | This testing is performed on entire system. | While this testing is performed on few selective modules of the system. |
04. | The main objective of Monkey Testing is to check whether system crashes or not. | The main objective of Gorilla testing is to check whether the module is working properly or not. |
05. | In Monkey Testing a user or a tester or a developer can test the system to confirm whether it performs the desired set of actions. | Mostly in Gorilla Testing the testers and developers both can jointly or independently test a module’s functionalities repeatedly. |
06. | There are three types of Monkey Testing i.e. Dumb Monkey Testing, Smart Monkey Testing and Brilliant Monkey Testing. | While there is no such different types of Gorilla Testing available. |
07. | Mainly the Monkey Testing strategy is used in System Testing. | Mainly the Gorilla Testing strategy is used in Unit Testing. |
08. | Monkey testing is also known as Random testing, Fuzz Testing or Stochastic Testing. | Gorilla Testing is also known as Torture Testing, Fault Tolerance Testing or Frustrating Testing. |