Lines Matching refs:requirement
5 guide focusing on requirement
16 For our requirement,
28 Additionally, we may need to create a new BiPredicate for our requirement. The
29 BiPredicate defines the operator to test measurements for our requirement with.
40 In PerformanceClassEvaluator.java, we will define a new requirement class. This
56 The constructors for requirement classes are very standardized. They are always
85 The last thing we need to make for our requirement class is a create method.
98 requirement measurement is greater than or equal to to 100, the device
101 requirement measurement is greater than or equal to to 125, the device
104 Note: if a device meets multiple performance classes for a requirement, the
107 For requirement
130 Note: a requirement class can be and often is used for multiple requirements. If
136 PerformacneClassEvaluator for our requirement. All it does is call
148 Now that we have a requirement defined we just need to update our test to use
154 Next we will create the evaluator and add our newly defined requirement. This