public void TestLogWarningFromResourcesNullSubcategoryResourceName()
 {
     RunAndCheckTaskLoggingHelper(
         (tlh) => tlh.LogWarningFromResources(null, null, null, null, 0, 0, 0, 0, "MessageResource1", "foo"),
         (l) => Assert.IsTrue(l.CheckFullLog("Message from resources with arg 'foo'") == 0, "Message not found")
         );
 }
 public void TestLogWarningFromResourcesNullMessage2()
 {
     tlh = new TaskLoggingHelper(task);
     tlh.LogWarningFromResources(null, null, null, null, 0, 0, 0, 0, null);
 }