Exemplo n.º 1
0
 public BaseFunctionTests()
 {
     mockLogger = MockILogger.Get <TFunction>();
     mockAccessTokenValidator = MockIAccessTokenValidator.Get();
     mockTransfersService     = MockITransfersService.Get();
     mockCoreContext          = MockICoreContext.Get();
 }
Exemplo n.º 2
0
        public void GetLogWithTypeReturnsALoggerWithTypeName()
        {
            string expected = "PluginFramework.Tests.Logging.UnitTest_ILogger";
            string actual   = null;

            ILogger tested = new MockILogger();

            actual = tested.GetLog(GetType()).Name;

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 3
0
        public void GetLogWithObjectThrowsOnNullObject()
        {
            ILogger tested = new MockILogger();

            DoAssert.Throws <ArgumentNullException>(() => tested.GetLog((object)null));
        }
Exemplo n.º 4
0
        public void GetLogWithTypeThrowsOnNullType()
        {
            ILogger tested = new MockILogger();

            DoAssert.Throws <ArgumentNullException>(() => tested.GetLog((Type)null));
        }