]> source.dussan.org Git - sonarqube.git/commitdiff
Remove unexpected file header in EsYmlSettingsTest
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Fri, 1 Jun 2018 13:18:11 +0000 (15:18 +0200)
committerSonarTech <sonartech@sonarsource.com>
Tue, 12 Jun 2018 18:21:01 +0000 (20:21 +0200)
server/sonar-main/src/test/java/org/sonar/application/es/EsYmlSettingsTest.java

index a372d4fc7978766b23891745bb919af78276b1ad..45281a798333f9b323756e8d9c7dc7271f1091a1 100644 (file)
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
-package org.sonar.application.es;/*
- * SonarQube
- * Copyright (C) 2009-2017 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
+package org.sonar.application.es;
 
 import java.io.File;
 import java.io.IOException;
@@ -50,13 +32,13 @@ import static org.assertj.core.api.Assertions.assertThat;
 public class EsYmlSettingsTest {
 
   @Rule
-  public TemporaryFolder folder= new TemporaryFolder();
+  public TemporaryFolder temp = new TemporaryFolder();
   @Rule
   public ExpectedException expectedException = ExpectedException.none();
 
   @Test
   public void test_generation_of_file() throws IOException {
-    File yamlFile = folder.newFile();
+    File yamlFile = temp.newFile();
     new EsYmlSettings(new HashMap<>()).writeToYmlSettingsFile(yamlFile);
 
     assertThat(yamlFile).exists();
@@ -70,7 +52,7 @@ public class EsYmlSettingsTest {
 
   @Test
   public void if_file_is_not_writable_ISE_must_be_thrown() throws IOException {
-    File yamlFile = folder.newFile();
+    File yamlFile = temp.newFile();
     yamlFile.setReadOnly();
 
     expectedException.expect(IllegalStateException.class);