On the next page, you will need to make a payment for the new subscription plan. This plan will become available to you immediately after the payment is completed. In the future, we will charge you for the new plan.
Для оплаты переведите руб. на карту
2202 2071 8504 1095 (Сбер)
и пришлите скан оплаты или чек в Телеграм на @vitek_215. Код подписки на месяц пришлем в ответном сообщении через несколько часов.
What (who) is equivalence partitioning - definition
Equivalencepartitioning
Equivalencepartitioning or equivalence class partitioning (ECP) is a software testing technique that divides the input data of a software unit into partitions of equivalent data from which test cases can be derived. In principle, test cases are designed to cover each partition at least once.
<testing> A software testing technique that involves
identifying a small set of representative input values that
invoke as many different input conditions as possible.
For example, for binary search the following partitions
exist: inputs that do or do not conform to pre-conditions,
Inputs where the key element is or is not a member of the
array. One can combine these into finer partitions. One can
also pick specific conditions of the array, e.g. a single
value, even or odd number of elements. One should look at
boundary conditions, e.g. inputs where the key element is
the first or last element in the array.
(2004-01-18)