Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
student:eclipse:eclemma [2018/08/10 12:04] – created bernstdhstudent:eclipse:eclemma [2020/01/17 16:07] bernstdh
Line 86: Line 86:
 Java adds an automatic constructor to all classes that do not    have a constructor, including utility classes. So, unless you go    out of your way to do so, your test suite will not cover the    automatic constructor which means that the declaration of the    class may appear to be uncovered. If you want, you can construct    an instance of the utility class in one of your tests (and, so,    cover the automatic constructor). Java adds an automatic constructor to all classes that do not    have a constructor, including utility classes. So, unless you go    out of your way to do so, your test suite will not cover the    automatic constructor which means that the declaration of the    class may appear to be uncovered. If you want, you can construct    an instance of the utility class in one of your tests (and, so,    cover the automatic constructor).
  
 +==== Accessibility Settings ====
 +
 +To change the color settings (for those who have difficulty with red/green colorblindness):
 +
 +<key>Window+Preferences+General+Editors+Text Editors+Annotations</key>
 +
 +The settings for code coverage highlighting can be found within
 + 
 +1) Full Coverage
 +
 +2) Partial Coverage
 +
 +3) No Coverage
  
 ==== For More Information ==== ==== For More Information ====