From 3c4248451401585271e58c5446082d3f1b95bf77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 29 Mar 2016 16:16:55 +0200 Subject: [PATCH] IJSDK-142 Typo on "Test Project and Testdata Directories" page --- basics/testing_plugins/test_project_and_testdata_directories.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basics/testing_plugins/test_project_and_testdata_directories.md b/basics/testing_plugins/test_project_and_testdata_directories.md index 7d3fa40dbdd..f1719e1711a 100644 --- a/basics/testing_plugins/test_project_and_testdata_directories.md +++ b/basics/testing_plugins/test_project_and_testdata_directories.md @@ -4,7 +4,7 @@ title: Test Project and Testdata Directories The test fixture creates a *test project* environment. Unless you customize the project creation, the test project will have one module with one source root called `src`. The files for the test project exist either in a temporary directory or in an in-memory file system, depending on which implementation of [`TempDirTestFixture`](upsource:///platform/testFramework/src/com/intellij/testFramework/fixtures/TempDirTestFixture.java) is used. -[`LightPlatformCodeInsightFixtureTestCase`](upsource:///platform/testFramework/src/com/intellij/testFramework/fixtures/LightPlatformCodeInsightFixtureTestCase.java uses an in-memory implementation; if you set up the test environment by calling `IdeaTestFixtureFactory.createCodeInsightFixture`, you can specify the implementation to use. +[`LightPlatformCodeInsightFixtureTestCase`](upsource:///platform/testFramework/src/com/intellij/testFramework/fixtures/LightPlatformCodeInsightFixtureTestCase.java) uses an in-memory implementation; if you set up the test environment by calling `IdeaTestFixtureFactory.createCodeInsightFixture`, you can specify the implementation to use. > **Note** If your tests use the in-memory implementation, and you abort the execution of your tests, the persisted filesystem caches may get out of sync with the in-memory structures, and you may get spurious errors in your tests. >