Package org.tamacat.di

Source Code of org.tamacat.di.DIContainerFactoryTest

/*
* Copyright (c) 2009, TamaCat.org
* All rights reserved.
*/
package org.tamacat.di;

import static org.junit.Assert.*;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.tamacat.di.impl.DIContainerFactory;

public class DIContainerFactoryTest {

 
  @Before
  public void setUp() throws Exception {
  }

  @After
  public void tearDown() throws Exception {
  }

  @Test
  public void testGetInstance() {
    DIContainer di1 = new DIContainerFactory(null).getInstance("test.xml");
    DIContainer di2 = new DIContainerFactory(null).getInstance("test.xml");
    assertSame(di1, di2);
  }

}
TOP

Related Classes of org.tamacat.di.DIContainerFactoryTest

TOP
Copyright © 2018 www.massapi.com. 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.