fix imports in MutableLocalVariableTest

Reviewed By: jvillard

Differential Revision: D3716774

fbshipit-source-id: 8b1239b
master
Martino Luca 8 years ago committed by Facebook Github Bot 8
parent c2043af70d
commit 6840efdd1c

@ -54,6 +54,7 @@ java_test(
deps=[ deps=[
'//infer/tests/endtoend/objcpp/infer:infer', '//infer/tests/endtoend/objcpp/infer:infer',
'//infer/tests/endtoend/objcpp/linters:linters', '//infer/tests/endtoend/objcpp/linters:linters',
'//infer/tests/endtoend/objcpp/componentkit:componentkit',
], ],
visibility=[ visibility=[
'PUBLIC', 'PUBLIC',

@ -9,19 +9,23 @@
package endtoend.objcpp.componentkit; package endtoend.objcpp.componentkit;
import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.MatcherAssert.assertThat;
import static utils.matchers.ResultContainsLineNumbers.containsLines; import static utils.matchers.ResultContainsLineNumbers.containsLines;
import com.google.common.collect.ImmutableList;
import org.junit.BeforeClass; import com.google.common.collect.ImmutableList;
import org.junit.ClassRule;
import org.junit.Test; import org.junit.BeforeClass;
import java.io.IOException; import org.junit.ClassRule;
import utils.DebuggableTemporaryFolder; import org.junit.Test;
import utils.InferException;
import utils.InferResults; import java.io.IOException;
import utils.InferRunner;
import utils.DebuggableTemporaryFolder;
public class MutableLocalVariableTest { import utils.InferException;
import utils.InferResults;
import utils.InferRunner;
public class MutableLocalVariableTest {
public static final String FILE = public static final String FILE =
"infer/tests/codetoanalyze/objcpp/componentkit/Test.mm"; "infer/tests/codetoanalyze/objcpp/componentkit/Test.mm";
@ -38,6 +42,7 @@ package endtoend.objcpp.componentkit;
folder, folder,
FILE); FILE);
} }
@Test @Test
public void MLVsInComponentFile() public void MLVsInComponentFile()
throws InterruptedException, IOException, InferException { throws InterruptedException, IOException, InferException {
@ -45,6 +50,6 @@ package endtoend.objcpp.componentkit;
assertThat( assertThat(
"Results should contain " + MUTABLE_LOCAL_VARIABLE_IN_COMPONENT_FILE, "Results should contain " + MUTABLE_LOCAL_VARIABLE_IN_COMPONENT_FILE,
inferResults, inferResults,
containsOnlyLines(new int[]{58, 69, 74, 76, 80, 85})); containsLines(new int[]{58, 69, 74, 76, 80, 85}));
} }
} }

Loading…
Cancel
Save