1 package junitx.example.resource; 2 3 import java.util.Properties ; 4 5 import junitx.runner.resource.*; 6 7 11 public class VoidResource extends AbstractResource { 12 13 public void init(Properties props) throws Exception { 14 super.init(props); 15 } 16 17 public void release() throws Exception { 18 } 19 20 public Object getObject(String name) throws Exception { 21 return null; 22 } 23 24 } 25 | Popular Tags |