]> source.dussan.org Git - sonarqube.git/blob
a6b4f96cf33de24ec92e17dde82115ae9928e941
[sonarqube.git] /
1 package org.sonar.tests.clover3.module2;
2
3 public class NotTestedClass {
4   private String hello;
5   
6   public NotTestedClass(String s){
7     this.hello = s;
8   }
9   
10   public String say() {
11         return hello;
12   }
13
14   public String hello() {
15         return hello;
16   }
17 }