Package com.qatarlyst.springproblem

Source Code of com.qatarlyst.springproblem.HighLevelContextTest

/**
*
* -----------------------------------------------------------------------
*
* QATARLYST LIMITED
*
* -----------------------------------------------------------------------
*
* (C) Copyright 2012 Qatarlyst Limited. All rights reserved.
*
* NOTICE:  All information contained herein or attendant hereto is,
*          and remains, the property of Qatarlyst Limited.  Many of the
*          intellectual and technical concepts contained herein are
*          proprietary to Qatarlyst Limited. Any dissemination of this
*          information or reproduction of this material is strictly
*          forbidden unless prior written permission is obtained
*          from Qatarlyst Limited.
*
* -----------------------------------------------------------------------
*
*/
package com.qatarlyst.springproblem;

import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class HighLevelContextTest {

  @Test
  public void contextBuilds() {
    AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
    ctx.register(HighLevelContext.class);
    ctx.refresh();
  }

}
TOP

Related Classes of com.qatarlyst.springproblem.HighLevelContextTest

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.