public void testParse() throws Exception{
db = TipOfTheDay.create(getClass().getResource("kb-2007-03-08.xml"));
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("J2SE", 10);
Tip t = db.find(map.entrySet());
assertNotNull("Some J2SE tip should be given", t);
}