diff options
author | Glyn Normington | 2010-04-20 14:38:13 +0000 |
---|---|---|
committer | Glyn Normington | 2010-04-20 14:38:13 +0000 |
commit | 1fe315346425dcdea73feebd431aba7ae2a75f61 (patch) | |
tree | 617c48f3ec41fb2cde58e215bc42bc2b3a5d8678 /org.eclipse.virgo.medic.integrationtest/src/main | |
download | org.eclipse.virgo.medic-1fe315346425dcdea73feebd431aba7ae2a75f61.tar.gz org.eclipse.virgo.medic-1fe315346425dcdea73feebd431aba7ae2a75f61.tar.xz org.eclipse.virgo.medic-1fe315346425dcdea73feebd431aba7ae2a75f61.zip |
[bug 307650] initial check-in from dm Server Virgo medic 0a647883a0176f60d8572f51c7eff591b7e408b6
Diffstat (limited to 'org.eclipse.virgo.medic.integrationtest/src/main')
3 files changed, 37 insertions, 0 deletions
diff --git a/org.eclipse.virgo.medic.integrationtest/src/main/java/.gitignore b/org.eclipse.virgo.medic.integrationtest/src/main/java/.gitignore new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/org.eclipse.virgo.medic.integrationtest/src/main/java/.gitignore diff --git a/org.eclipse.virgo.medic.integrationtest/src/main/java/test/TestClass.java b/org.eclipse.virgo.medic.integrationtest/src/main/java/test/TestClass.java new file mode 100644 index 0000000..fb1de67 --- /dev/null +++ b/org.eclipse.virgo.medic.integrationtest/src/main/java/test/TestClass.java @@ -0,0 +1,37 @@ +/******************************************************************************* + * Copyright (c) 2008, 2010 VMware Inc. + * 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: + * VMware Inc. - initial contribution + *******************************************************************************/ + +package test; + +public class TestClass { + + public void publicTest(boolean throwException) { + if (throwException) { + throw new RuntimeException(); + } + return; + } + + void packagePrivateTest(boolean throwException) { + if (throwException) { + throw new RuntimeException(); + } + return; + } + + @SuppressWarnings("unused") + private void privateTest(boolean throwException) { + if (throwException) { + throw new RuntimeException(); + } + return; + } +} diff --git a/org.eclipse.virgo.medic.integrationtest/src/main/resources/.gitignore b/org.eclipse.virgo.medic.integrationtest/src/main/resources/.gitignore new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/org.eclipse.virgo.medic.integrationtest/src/main/resources/.gitignore |