예제 #1
0
        public void getAccountLogsTest()
        {
            AccountLogRepository target = new AccountLogRepository(); // TODO: Initialize to an appropriate value
            string    name     = string.Empty;                        // TODO: Initialize to an appropriate value
            DateTime  from     = new DateTime();                      // TODO: Initialize to an appropriate value
            DateTime  to       = new DateTime();                      // TODO: Initialize to an appropriate value
            DataTable expected = null;                                // TODO: Initialize to an appropriate value
            DataTable actual;

            actual = target.getAccountLogs(name, from, to);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
 public AuthenticationController(Context context)
 {
     _account    = new AccountRepository(context);
     _accountLog = new AccountLogRepository(context);
 }
예제 #3
0
        public void AccountLogRepositoryConstructorTest()
        {
            AccountLogRepository target = new AccountLogRepository();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }