"Codeabdeckung" (Synonym: Testabdeckung) ist ein Maß für die Menge an Anwendungsquellcode, die normalerweise von einem Testregime, häufig durch Komponententests, ausgeübt wurde.
Ich habe einen Enum- Schalter mehr oder weniger wie folgt: public static enum MyEnum {A, B} public int foo(MyEnum value) { switch(value) { case(A): return calculateSomething(); case(B): return calculateSomethingElse(); } throw new IllegalArgumentException("Do not know how to handle " + value); } und ich möchte, dass alle Zeilen von den …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.