Package ro.isdc.wro.http.support.ServletContextAttributeHelper

Examples of ro.isdc.wro.http.support.ServletContextAttributeHelper.Attribute


    victim.setAttribute(Attribute.CONFIGURATION, null);
  }

  @Test
  public void shouldGetAttribute() {
    final Attribute attr = Attribute.CONFIGURATION;
    final WroConfiguration value = new WroConfiguration();
    Mockito.when(mockServletContext.getAttribute(victim.getAttributeName(attr))).thenReturn(value);
    Assert.assertSame(value, victim.getAttribute(attr));
  }
View Full Code Here

TOP

Related Classes of ro.isdc.wro.http.support.ServletContextAttributeHelper.Attribute

Copyright © 2018 www.massapicom. 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.