public void getTestMethodMeta_A$MethodMeta$ExceptionMeta() throws Exception {
// given
String sourceCodeString = "package hoge.foo; import java.util.List; public class Sample { public Sample() {}\r\n public int doSomething(String str, long longValue) throws Throwable { System.out.println(\"aaaa\") } }";
ClassMeta targetClassMeta = classMetaExtractor.extract(sourceCodeString);
MethodMeta targetMethodMeta = targetClassMeta.methods.get(0);
ExceptionMeta exception = new ExceptionMeta();
exception.name = "Exception";
exception.nameInMethodName = "Exception";
generator.initialize(targetClassMeta);
// when
TestMethodMeta actual = generator.getTestMethodMeta(targetMethodMeta, exception);