Exemple #1
0
        public void getAccountLogsTest()
        {
            AccountLogBus target   = new AccountLogBus(); // TODO: Initialize to an appropriate value
            string        name     = string.Empty;        // TODO: Initialize to an appropriate value
            DateTime      from     = DateTime.Today;
            DateTime      to       = DateTime.Today.AddDays(1);
            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.");
        }
Exemple #2
0
        public void AccountLogBusConstructorTest()
        {
            AccountLogBus target = new AccountLogBus();

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