1 10 11 package org.picocontainer.testmodel; 12 13 import junit.framework.Assert; 14 15 19 public class DependsOnTwoComponents { 20 public DependsOnTwoComponents(Touchable Touchable, DependsOnTouchable fred) { 21 Assert.assertNotNull("Touchable cannot be passed in as null", Touchable); 22 Assert.assertNotNull("DependsOnTouchable cannot be passed in as null", fred); 23 } 24 } 25 | Popular Tags |