Package com.testdomain

Examples of com.testdomain.ArticleIndexDenorm


    // the test case also fails.
    String key = null;
    List flatResult = sqlMap.queryForList("getJira260FlatResult", null);
    Iterator iterator = flatResult.iterator();
    while (iterator.hasNext()) {
      ArticleIndexDenorm articleIndex =
          (ArticleIndexDenorm) iterator.next();
      key = articleIndex.getCategoryTitle() + "||" +
          articleIndex.getTopicTitle() + "||" +
          articleIndex.getDescription();
      if (!test.containsKey(key)) {
        throw new Exception("Key \"" + key + "\" does not exist in the hashMap, regression test fails");
      } else {
        test.remove(key);
      }
View Full Code Here

TOP

Related Classes of com.testdomain.ArticleIndexDenorm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.