Пример #1
0
        public void EmvPinReader_Construction_ShouldNotThrowException()
        {
            // Act
            EmvPinReader emvReader = new EmvPinReader();

            // Assert
            Assert.IsNotNull(emvReader);
        }
Пример #2
0
 public void Setup()
 {
     this.mockedComm        = new Stubs.PinpadCommunicationStub();
     this.dummyPinpadFacade = Mock.Of <IPinpadFacade>();
     this.emvPinReader      = new EmvPinReader();
 }