Exemple #1
0
 public void TestLogging()
 {
     TestHelper.RecreateDatabase(TestContext);
     CreateLogTablesTask.CreateLog();
     ProcessCubeTask.Process("Process cube test");
     Assert.AreEqual(2, new SqlTask("Find log entry", "select count(*) from etl.Log where TaskType='PROCESSCUBE' group by TaskHash")
     {
         DisableLogging = true
     }.ExecuteScalar <int>());
 }
Exemple #2
0
 public void TestProcess()
 {
     ProcessCubeTask.Process("Process cube test");
 }