]> source.dussan.org Git - sonarqube.git/blob
f07140c96b5334c7045254d7a28549a336d709ba
[sonarqube.git] /
1 package org.sonar.tests;
2
3 public class ResourceIsClosed {
4   
5   public void resourceIsStopped() throws Exception {
6     CloseableResource resource = new CloseableResource();
7     try {
8       resource.init();
9
10     } finally {
11       resource.close();
12     }
13   }
14 }