/** * * ----------------------------------------------------------------------- * * 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 LowLevelContextTest { @Test public void contextBuilds() { AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(); ctx.register(LowLevelContext.class); ctx.refresh(); } }