1 /***************************************************************************** 2 * Copyright (C) PicoContainer Organization. All rights reserved. * 3 * ------------------------------------------------------------------------- * 4 * The software in this package is published under the terms of the BSD * 5 * style license a copy of which has been included with this distribution in * 6 * the LICENSE.txt file. * 7 * * 8 * Original code by * 9 *****************************************************************************/ 10 package org.picocontainer.defaults; 11 12 import org.picocontainer.MutablePicoContainer; 13 import org.picocontainer.tck.AbstractMultipleConstructorTestCase; 14 15 /** 16 * @author Aslak Hellesøy 17 * @version $Revision: 1570 $ 18 */ 19 public class DefaultMultipleConstructorTestCase extends AbstractMultipleConstructorTestCase { 20 protected MutablePicoContainer createPicoContainer() { 21 return new DefaultPicoContainer(); 22 } 23 24 // Eclipse need at least *one* fixture as direct class member ... 25 public void testEclipseDummy() { 26 } 27 } 28