Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Mandrikov2018-06-28 21:37:21 +0000
committerEvgeny Mandrikov2018-06-28 21:37:21 +0000
commitf6e5b0dd4587b72fc225329c49d40ba95eac087b (patch)
tree57450b77cbbf8be9372e25696c896bf702b484d8
parent8fc65ba99b0c0affb56be106357f37250919a05b (diff)
downloadphoton-f6e5b0dd4587b72fc225329c49d40ba95eac087b.tar.gz
photon-f6e5b0dd4587b72fc225329c49d40ba95eac087b.tar.xz
photon-f6e5b0dd4587b72fc225329c49d40ba95eac087b.zip
[EclEmma] Add text and images about changes in Java Code Coverage into final document
Change-Id: I6987805e2b068ec34bfcb3865a905f5db87b4026 Signed-off-by: Evgeny Mandrikov <mandrikov@gmail.com>
-rw-r--r--noteworthy/images/coverage_finally.pngbin0 -> 120235 bytes
-rw-r--r--noteworthy/images/coverage_try_with_resources.pngbin0 -> 92455 bytes
-rw-r--r--noteworthy/noteworthy.html23
-rw-r--r--noteworthy/source/eclemma.adoc11
-rw-r--r--noteworthy/source/noteworthy.adoc2
5 files changed, 35 insertions, 1 deletions
diff --git a/noteworthy/images/coverage_finally.png b/noteworthy/images/coverage_finally.png
new file mode 100644
index 0000000..3a66ddb
--- /dev/null
+++ b/noteworthy/images/coverage_finally.png
Binary files differ
diff --git a/noteworthy/images/coverage_try_with_resources.png b/noteworthy/images/coverage_try_with_resources.png
new file mode 100644
index 0000000..eef9ae2
--- /dev/null
+++ b/noteworthy/images/coverage_try_with_resources.png
Binary files differ
diff --git a/noteworthy/noteworthy.html b/noteworthy/noteworthy.html
index ccb1619..0014cdc 100644
--- a/noteworthy/noteworthy.html
+++ b/noteworthy/noteworthy.html
@@ -165,6 +165,7 @@ table.CodeRay td.code>pre{padding:0}
<li><a href="#java-formatter">Java Formatter</a></li>
<li><a href="#debug">Debug</a></li>
<li><a href="#jdt-developers">JDT Developers</a></li>
+<li><a href="#java-code-coverage">Java Code Coverage</a></li>
</ul>
</li>
<li><a href="#pdt">PHP Development Tools</a>
@@ -1439,6 +1440,26 @@ module hello {
</div>
</div>
</div>
+<div class="sect2">
+<h3 id="java-code-coverage"><a class="anchor" href="#java-code-coverage"></a>Java Code Coverage</h3>
+<div class="sect3">
+<h4 id="filters-and-support-for-java-10"><a class="anchor" href="#filters-and-support-for-java-10"></a>Filters and support for Java 10</h4>
+<div class="paragraph">
+<p>Various compiler generated artifacts, which previously required unnecessary and
+sometimes impossible tricks to not have partial or missed coverage, are now filtered out:</p>
+</div>
+<div class="imageblock">
+<div class="content">
+<img src="./images/coverage_finally.png" alt="coverage finally">
+</div>
+</div>
+<div class="imageblock">
+<div class="content">
+<img src="./images/coverage_try_with_resources.png" alt="coverage try with resources">
+</div>
+</div>
+</div>
+</div>
</div>
</div>
<div class="sect1">
@@ -2460,4 +2481,4 @@ module hello {
</div>
</div>
</body>
-</html>
+</html> \ No newline at end of file
diff --git a/noteworthy/source/eclemma.adoc b/noteworthy/source/eclemma.adoc
new file mode 100644
index 0000000..c715125
--- /dev/null
+++ b/noteworthy/source/eclemma.adoc
@@ -0,0 +1,11 @@
+[[java-code-coverage]]
+== Java Code Coverage
+
+[[filters-and-support-for-java-10]]
+=== Filters and support for Java 10
+
+Various compiler generated artifacts, which previously required unnecessary and
+sometimes impossible tricks to not have partial or missed coverage, are now filtered out:
+
+image::images/coverage_finally.png[]
+image::images/coverage_try_with_resources.png[]
diff --git a/noteworthy/source/noteworthy.adoc b/noteworthy/source/noteworthy.adoc
index d35d744..56c0d73 100644
--- a/noteworthy/source/noteworthy.adoc
+++ b/noteworthy/source/noteworthy.adoc
@@ -20,6 +20,8 @@
include::jdt.adoc[leveloffset=1]
+include::eclemma.adoc[leveloffset=1]
+
include::pdt.adoc[leveloffset=1]
include::platform.adoc[leveloffset=1]

Back to the top