Package com.calclab.suco.tests

Source Code of com.calclab.suco.tests.SucoFactoryTests

package com.calclab.suco.tests;

import static org.junit.Assert.assertNotNull;

import org.junit.Test;

import com.calclab.suco.client.SucoFactory;
import com.calclab.suco.client.ioc.Container;
import com.calclab.suco.client.ioc.decorator.NoDecoration;
import com.calclab.suco.client.ioc.decorator.Singleton;

public class SucoFactoryTests {

    @Test
    public void shouldHaveDefaultScopes() {
  final Container container = SucoFactory.create();
  assertNotNull(container.getInstance(NoDecoration.class));
  assertNotNull(container.getInstance(Singleton.class));
    }

}
TOP

Related Classes of com.calclab.suco.tests.SucoFactoryTests

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.