228229230231232233234235236237238
Object[] mocks = {rule, command, args, ref, eClass, feature, validator, node }; PowerMock.replay(NodeModelUtils.class); replay(mocks); validator.commandWithUnrecognizedConstantValue(command); verify(mocks); PowerMock.verify(NodeModelUtils.class); }
5051525354555657585960
Object[] mocks = {rule, command, args, ref, validator }; replay(mocks); validator.commandWithUnrecognizedConstantValue(command); verify(mocks); } @Test
7576777879808182838485
112113114115116117118119120121122
Object[] mocks = {rule, command, args, ref, eClass, feature, validator }; replay(mocks); validator.commandWithUnrecognizedConstantValue(command); verify(mocks); } @Test
149150151152153154155156157158159
183184185186187188189190191192193
Object[] mocks = {rule, command, args, ref, feature, validator, node }; PowerMock.replay(NodeModelUtils.class); replay(mocks); validator.commandWithUnrecognizedConstantValue(command); verify(mocks); PowerMock.verify(NodeModelUtils.class); }