large set of functional tests, passing all except the HandshakeAction

This commit is contained in:
Dave
2015-07-05 20:08:45 +02:00
parent 333473a511
commit 2865590088
14 changed files with 545 additions and 28 deletions

View File

@@ -43,13 +43,13 @@ public abstract class NoHandshakeAction extends NoSourcedAction {
public void execute(NoAdapter adapter) {
this.process();
try {
NoInfluence influence = this.generateTargetInfluence();
NoInfluence influence = generateTargetInfluence();
if (influence != null) {
NoByteSet byteSet = influence.getByteSet(this.target);
adapter.addNoByteSet(byteSet, this.target);
}
NoInfluence result = this.generateReturnedInfluence();
NoInfluence result = generateReturnedInfluence();
if (result != null) {
NoByteSet byteSet = result.getByteSet(this.source);
adapter.addNoByteSet(byteSet, this.source);