File styleDotSCC = new File( microPlatform.getFilePath() + "system/axis/themes/onyx/styles.css" );
context.setResource( "/test-module/themes/onyx/styles.css", styleDotSCC.toURI().toURL() );
context.setResourceAsStream( "/test-module/themes/onyx/styles.css", new FileInputStream( styleDotSCC ) );
PentahoSystem.getApplicationContext().setContext( context );
IContentGenerator serviceLister = new StyledHtmlAxisServiceLister();
String html = ContentGeneratorUtil.getContentAsString( serviceLister );
System.out.println( html );
assertTrue( "style is missing", html.contains( "styles.css" ) );