コード例 #1
0
        public void Get_Called_ReturnsLoginModel()
        {
            // Arrange
            var sut = new AccountsLoginService(Context, new Mock <IAuthenticationProvider>().Object);

            // Act
            var result = sut.Get();

            // Assert
            Assert.IsType <LoginModel>(result);
        }