@Test
public void initialize_A$String_StringIsNull() throws Exception {
MethodMetaExtractor target = new MethodMetaExtractor(config);
String sourceCodeString = null;
try {
target.initialize(sourceCodeString);
fail();
} catch (JUnitHelperCoreException e) {
}
}