158159160161162163164165166167168
try(Fuzzer fuzzer = new Fuzzer(this)) { fuzzer.connect(); fuzzer.setSendMode(Fuzzer.SendMode.BULK); fuzzer.send(send); fuzzer.expect(expect); fuzzer.expectNoMoreFrames(); } }
187188189190191192193194195196197
279280281282283284285286287288289
try(Fuzzer fuzzer = new Fuzzer(this);StacklessLogging supress = new StacklessLogging(Parser.class)) { fuzzer.connect(); fuzzer.setSendMode(Fuzzer.SendMode.BULK); fuzzer.send(send); fuzzer.expect(expect); } } /**
319320321322323324325326327328329
{ fuzzer.connect(); fuzzer.setSendMode(Fuzzer.SendMode.BULK); // phase 1 fuzzer.send(send1); fuzzer.expect(expect1); // delay TimeUnit.SECONDS.sleep(1);
326327328329330331332333334335336
// delay TimeUnit.SECONDS.sleep(1); // phase 2 fuzzer.send(send2); fuzzer.expect(expect2); } } /**
349350351352353354355356357358359
385386387388389390391392393394395
try(Fuzzer fuzzer = new Fuzzer(this);StacklessLogging supress = new StacklessLogging(Parser.class)) { fuzzer.connect(); fuzzer.setSendMode(Fuzzer.SendMode.PER_FRAME); fuzzer.send(send1); fuzzer.expect(expect1); TimeUnit.SECONDS.sleep(1); fuzzer.send(send2);
390391392393394395396397398399400
fuzzer.send(send1); fuzzer.expect(expect1); TimeUnit.SECONDS.sleep(1); fuzzer.send(send2); fuzzer.expect(expect2); } } /**
427428429430431432433434435436437
{ fuzzer.connect(); fuzzer.setSendMode(Fuzzer.SendMode.SLOW); fuzzer.setSlowSendSegmentSize(1); fuzzer.send(send1); fuzzer.expect(expect1); TimeUnit.SECONDS.sleep(1); fuzzer.send(send2);
432433434435436437438439440441442