aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2015-01-04 18:27:41 +0100
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2015-01-04 18:27:41 +0100
commit7946741470a5c7efc95af2079ad72d334a511b83 (patch)
treede862aec25921ed1fdd7b821425b79887307d24f /org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java
parentd31ce3dcc90dead13a1ca8acb0d7a5bfe99e61d6 (diff)
downloadjacoco-7946741470a5c7efc95af2079ad72d334a511b83.tar.gz
Validation test for issue #265.
Diffstat (limited to 'org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java')
-rw-r--r--org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java b/org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java
index 73ebc6dc..7d8fb1b2 100644
--- a/org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java
+++ b/org.jacoco.core.test/src/org/jacoco/core/test/validation/FramesTest.java
@@ -33,6 +33,7 @@ import org.jacoco.core.test.validation.targets.Target08;
import org.jacoco.core.test.validation.targets.Target09;
import org.jacoco.core.test.validation.targets.Target10;
import org.jacoco.core.test.validation.targets.Target11;
+import org.jacoco.core.test.validation.targets.Target12;
import org.junit.Test;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassVisitor;
@@ -165,4 +166,9 @@ public class FramesTest {
testFrames(Target11.class);
}
+ @Test
+ public void testTarget12() throws IOException {
+ testFrames(Target12.class);
+ }
+
}