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