blob: a319aaede5a50b42f616c8076d9b5b355b07d14b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.server.core.tests.impl;
import java.util.ArrayList;
import java.util.HashMap;
import org.eclipse.wst.server.core.model.RuntimeDelegate;
public class TestRuntimeDelegate extends RuntimeDelegate {
public void testProtected() {
initialize();
try {
getAttribute("test", false);
} catch (Exception e) {
// ignore
}
try {
getAttribute("test", 0);
} catch (Exception e) {
// ignore
}
try {
getAttribute("test", new ArrayList());
} catch (Exception e) {
// ignore
}
try {
getAttribute("test", new HashMap());
} catch (Exception e) {
// ignore
}
try {
getAttribute("test", "test");
} catch (Exception e) {
// ignore
}
try {
setAttribute("test", false);
} catch (Exception e) {
// ignore
}
try {
setAttribute("test", 0);
} catch (Exception e) {
// ignore
}
try {
setAttribute("test", new ArrayList());
} catch (Exception e) {
// ignore
}
try {
setAttribute("test", new HashMap());
} catch (Exception e) {
// ignore
}
try {
setAttribute("test", "test");
} catch (Exception e) {
// ignore
}
}
}