}
public void init(TestConfig config, MockObjectTestCase testCase) throws Exception {
super.init(config, testCase);
BlockDeviceAPITestConfig cfg = (BlockDeviceAPITestConfig) config;
String name = "RamDiskDevice-Tests";
final RamDiskDevice device =
new RamDiskDevice(StubDeviceManager.INSTANCE.getSystemBus(), name, cfg.getDeviceSize());
final RamDiskDriver driver = new RamDiskDriver(name);
init(null, driver, device);
}