]> source.dussan.org Git - sonarqube.git/blob
8f5453ae7cfa9fda670c27f17e690129f07f6f57
[sonarqube.git] /
1 package org.sonar.samples;
2
3 public class ClassUnderTest {
4   public void toto() throws Exception {
5     int i=0;
6     i++;
7   }
8   public String hello() {
9     return "hello";
10   }
11 }