aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/ExecInfoTest.java
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-01-03 20:36:23 +0000
committerandroid-build-merger <android-build-merger@google.com>2018-01-03 20:36:23 +0000
commitedabee6ff11999e8c87b4b926947b4a5fca81186 (patch)
treef7d6e434bc9a5100c2256d41f8f8ad2cf3fea994 /org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/ExecInfoTest.java
parentc023f18d4f575d02f2db64346dc5f5968bb2f066 (diff)
parent206294a6e5b7ea53651b910c848c9b2e6d80c0cd (diff)
downloadjacoco-edabee6ff11999e8c87b4b926947b4a5fca81186.tar.gz
Revert "Merge remote-tracking branch 'aosp/upstream-pull-525' into master" am: 37043f9e86 am: 8e7552aae7
am: 206294a6e5 Change-Id: Ie3bff7848f0eb705a1d776fe6f5c3680f332edb0
Diffstat (limited to 'org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/ExecInfoTest.java')
-rw-r--r--org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/ExecInfoTest.java70
1 files changed, 0 insertions, 70 deletions
diff --git a/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/ExecInfoTest.java b/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/ExecInfoTest.java
deleted file mode 100644
index fdf1fd43..00000000
--- a/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/ExecInfoTest.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2009, 2017 Mountainminds GmbH & Co. KG and Contributors
- * 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:
- * Marc R. Hoffmann - initial API and implementation
- *
- *******************************************************************************/
-package org.jacoco.cli.internal.commands;
-
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.IOException;
-
-import org.jacoco.cli.internal.CommandTestBase;
-import org.jacoco.core.data.ExecutionData;
-import org.jacoco.core.data.ExecutionDataWriter;
-import org.jacoco.core.data.SessionInfo;
-import org.junit.Rule;
-import org.junit.Test;
-import org.junit.rules.TemporaryFolder;
-
-/**
- * Unit tests for {@link ExecInfo}.
- */
-public class ExecInfoTest extends CommandTestBase {
-
- @Rule
- public TemporaryFolder tmp = new TemporaryFolder();
-
- @Test
- public void should_print_usage_when_invalid_argument_is_given()
- throws Exception {
- execute("execinfo", "-invalid");
-
- assertFailure();
- assertContains("\"-invalid\" is not a valid option", err);
- assertContains("java -jar jacococli.jar execinfo [<execfiles> ...]",
- err);
- }
-
- @Test
- public void should_print_execution_data_info() throws Exception {
- File execfile = createExecFile();
-
- execute("execinfo", execfile.getAbsolutePath());
-
- assertOk();
- assertContains("[INFO] Loading exec file " + execfile.getAbsolutePath(),
- out);
- assertContains("CLASS ID HITS/PROBES CLASS NAME", out);
- assertContains("Session \"testid\":", out);
- assertContains("0000000000001234 2 of 3 foo/MyClass", out);
- }
-
- private File createExecFile() throws IOException {
- File f = new File(tmp.getRoot(), "test.exec");
- final FileOutputStream out = new FileOutputStream(f);
- final ExecutionDataWriter writer = new ExecutionDataWriter(out);
- writer.visitSessionInfo(new SessionInfo("testid", 1, 2));
- writer.visitClassExecution(new ExecutionData(0x1234, "foo/MyClass",
- new boolean[] { false, true, true }));
- out.close();
- return f;
- }
-
-}