public void AssertItemIsAbsentOnPanel(string filename, string panel) { AssertionUtil.AssertFalse(PanelBl.IsFileFound(panel, filename), "File is present when should not be"); }
public void AssertItemIsPresentOnPanel(string filename, string panel) { AssertionUtil.AssertTrue(PanelBl.IsFileFound(panel, filename), "File is not present when should be"); }