AK.F1.Timing.Live.Encryption.DecrypterFactoryBaseTest.StubDecrypterFactory.CreateWithSeed C# (CSharp) Method

CreateWithSeed() protected method

protected CreateWithSeed ( int seed ) : IDecrypter
seed int
return IDecrypter
            protected override IDecrypter CreateWithSeed(int seed)
            {
                CreateWithSeed_Seed = seed;

                return new Mock<IDecrypter>().Object;
            }
DecrypterFactoryBaseTest.StubDecrypterFactory