Credits to @4vid Image Link 1. What two properties must be satisfied for an input domain to be properly partitioned? Completeness: The partition must cover all of the domain. Disjoint: blocks should not overlap 2. What is an Input Domain Model (IDM)? Two Approaches to Input Domain Modeling: A. Interface-based approach. Develop characteristics directly from individual input parameters. Just use properties of the domains without considering the actual function under test. B. Functionality-based approach Develop characteristics from a behavioral view of the program under test. Use your understanding of what the system should do. 3. What gives more tests, each choice coverage or pair-wise coverage? Each Choice Coverage (ECC) states that one value from each block for each characteristic must be used in at least one test case. For example, for partitions [A, B] [1, 2] we can get [A, A], [B, B], [1, 1] and [2, 2] which are clearly redundan...
Comments
Post a Comment