@@ -249,7 +249,18 @@ def test_score_manager_constraint_ref():
249
249
'getJustificationList' , # deprecated
250
250
'getJustification' , # built-in constructor and properties with @dataclass
251
251
'getScore' , # built-in constructor and properties with @dataclass
252
- }
252
+ },
253
+ 'ConstraintMatchTotal' : {
254
+ 'getConstraintRef' , # built-in constructor and properties with @dataclass
255
+ 'composeConstraintId' , # deprecated
256
+ 'getConstraintPackage' , # deprecated
257
+ 'getConstraintName' , # deprecated
258
+ 'getConstraintId' , # deprecated
259
+ 'getConstraintMatchCount' , # built-in constructor and properties with @dataclass
260
+ 'getConstraintMatchSet' , # built-in constructor and properties with @dataclass
261
+ 'getConstraintWeight' , # built-in constructor and properties with @dataclass
262
+ 'getScore' , # built-in constructor and properties with @dataclass
263
+ },
253
264
}
254
265
255
266
@@ -260,6 +271,7 @@ def test_has_all_methods():
260
271
(ConstraintAnalysis , JavaConstraintAnalysis ),
261
272
(ScoreExplanation , JavaScoreExplanation ),
262
273
(ConstraintMatch , JavaConstraintMatch ),
274
+ (ConstraintMatchTotal , JavaConstraintMatchTotal ),
263
275
(ConstraintRef , JavaConstraintRef ),
264
276
(Indictment , JavaIndictment )):
265
277
type_name = python_type .__name__
0 commit comments