Exemplo n.º 1
0
 public void LinkFrontendSetup()
 {
     var decrypter = new DecryptStm();
     var encrypter = new EncryptStm();
     _fakePhysical = Substitute.For<IPhysical>();
     _uut = new Link(decrypter, encrypter, _fakePhysical, 1000);
 }
Exemplo n.º 2
0
 public void Reset(DecryptStm context)
 {
     context.SetState(new Idle());
 }
Exemplo n.º 3
0
 public virtual bool ParseByte(DecryptStm context, byte b)
 {
     throw new ArgumentException();
 }
Exemplo n.º 4
0
 public virtual void OnEnter(DecryptStm context)
 {
 }
Exemplo n.º 5
0
 public virtual void NewMessage(DecryptStm context, byte[] buffer)
 {
     throw new ArgumentException();
 }