/**
* @tests java.net.ResponseCache#setDefault(ResponseCache)
*/
public void test_SetDefaultLjava_net_ResponseCache_Normal()
throws Exception {
ResponseCache rc1 = new MockResponseCache();
ResponseCache rc2 = new MockResponseCache();
ResponseCache.setDefault(rc1);
assertSame(ResponseCache.getDefault(), rc1);
ResponseCache.setDefault(rc2);
assertSame(ResponseCache.getDefault(), rc2);
ResponseCache.setDefault(null);