TestCase testCase,
GuiceBerryEnvSelector guiceBerryEnvSelector) {
final GuiceBerryWrapper setUpAndTearDown =
GuiceBerry.INSTANCE.buildWrapper(buildTestDescription(testCase, testCase.getName()),
guiceBerryEnvSelector);
setUpAndTearDown.runBeforeTest();
return new TearDown() {
public void tearDown() throws Exception {
setUpAndTearDown.runAfterTest();
}