new String[]{
"hello",
"22"
});
ThingThatTakesParamsInConstructor thing =
(ThingThatTakesParamsInConstructor) nanoContainer.getPico().getComponentInstance("thing");
assertNotNull("component not present", thing);
assertEquals("hello22", thing.getValue());
}