/** * Clear the context * * @throws Exception */ @After public void tearDown() throws Exception { filter = null; query = null; dataSet.clear(); }
/** * Set up the context * * @throws Exception */ @Before public void setUp() throws Exception { filter = new LessThanFilter("value", 10); query = new Query<User>(User.class); dataSet.setup(); }