예제 #1
0
        private void TestConstructor()
        {
            AppEncryptionBytesImpl <string> appEncryption = new AppEncryptionBytesImpl <string>(envelopeEncryptionMock.Object);

            Assert.NotNull(appEncryption);
        }
예제 #2
0
 public AppEncryptionBytesImplTest()
 {
     envelopeEncryptionMock = new Mock <IEnvelopeEncryption <string> >();
     appEncryptionBytesImpl = new AppEncryptionBytesImpl <string>(envelopeEncryptionMock.Object);
 }