1 64 65 package com.jcorporate.expresso.services.dbobj.tests; 66 67 import com.jcorporate.expresso.core.db.DBException; 68 import com.jcorporate.expresso.core.dbobj.Schema; 69 70 71 77 public class TestSchema 78 extends Schema { 79 82 public TestSchema() 83 throws DBException { 84 super(); 85 86 try { 87 88 89 addDBObject(com.jcorporate.expresso.services.dbobj.tests.MediaTest.class); 90 } catch (Exception e) { 91 throw new DBException(e); 92 } 93 } 94 95 98 public String getMessageBundlePath() { 99 return "com/jcorporate/expresso/core"; 100 } 101 102 106 public String getDefaultComponentCode() { 107 return "tests"; 108 } 109 110 114 public String getDefaultDescription() { 115 return "Test Schema"; 116 } 117 } 118 119 | Popular Tags |