/** Test that adds metadata to the SlingTestContext */
public class OutputMetadataTest {
@Test
public void addMetadata() {
final SlingTestContext c = SlingTestContextProvider.getContext();
assertNotNull("Expecting a SlingTestContext", c);
c.output().put("the_quick", "brown fox!");
c.output().put("the_answer", 42);
}