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>()); }
public void TestProcess() { ProcessCubeTask.Process("Process cube test"); }