return null;
}
@Test
public void getCacheKey_A$MethodInvocation$boolean_raw() throws Exception {
MemcachedCacheResultInterceptor interceptor = new MemcachedCacheResultInterceptor();
MethodInvocation invocation = mock(MethodInvocation.class);
Method method = this.getClass().getMethod("getSomething", String.class, String.class);
when(invocation.getMethod()).thenReturn(method);
when(invocation.getArguments()).thenReturn(new Object[] { "foo", "bar" });
String actual = interceptor.getCacheKey(invocation, true);
String expected = "com.m3.methodcache.interceptor.MemcachedCacheResultInterceptorTest#getSomething" +
"(java.lang.String,java.lang.String)" +
" throws java.lang.Exception_$$_" +
"foo_$_bar_$_";
assertThat(actual, is(equalTo(expected)));