public void QueryOne() { var procedures = ProceduralDb.Query(".*", ".*", ".*", ".*", ".*", ".*", ".*"); Assert.Greater(procedures.Count, 0); Assert.IsTrue(procedures.All(p => ProceduralDb.ProcExists(p))); }
static public bool Exists(string name) { return(ProceduralDb.ProcExists(name)); }
static public bool Exists(string name) => ProceduralDb.ProcExists(name);
public void Exists() { Assert.IsFalse(ProceduralDb.ProcExists("nonsense")); Assert.IsTrue(ProceduralDb.ProcExists("gimp-image-new")); }