public void TestRemoveAllByCriteria() { SqlTestStore <Bean> store = new SqlTestStore <Bean>("name"); store.RemoveAllByCriteria(new FilterCriteria()); }
public void TestConstructor() { SqlTestStore <Bean> store = new SqlTestStore <Bean>("name"); }
public void TestRemoveAllByCriteriaNull() { SqlTestStore <Bean> store = new SqlTestStore <Bean>("name"); store.RemoveAllByCriteria(null); }
public void TestPutNull() { SqlTestStore <Bean> store = new SqlTestStore <Bean>("name"); store.Put(null); }
public void TestLoadAllTooManyRows() { SqlTestStore <Bean> store = new SqlTestStore <Bean>("name"); ICollection <Bean> coll = store.LoadAll(null, new QueryParameter(15)); }
public void TestLoadTooMayRows() { SqlTestStore <Bean> store = new SqlTestStore <Bean>("name"); Bean bean = store.Load(null, 2); }
public void TestLoadZeroRow() { SqlTestStore <Bean> store = new SqlTestStore <Bean>("name"); Bean bean = store.Load(null, 0); }