mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
move java-dependent test to java-tests
This commit is contained in:
+61
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Copyright 2000-2012 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.intellij.openapi.editor.impl;
|
||||
|
||||
import com.intellij.codeInsight.folding.CodeFoldingManager;
|
||||
import com.intellij.openapi.editor.CaretModel;
|
||||
import com.intellij.openapi.editor.FoldRegion;
|
||||
import com.intellij.testFramework.TestFileType;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* @author Denis Zhdanov
|
||||
* @since 11/18/10 7:42 PM
|
||||
*/
|
||||
public class FoldingProcessingOnDocumentModificationTest extends AbstractEditorProcessingOnDocumentModificationTest {
|
||||
|
||||
public void testUnexpectedClassLevelJavadocExpandingOnClassSignatureChange() throws IOException {
|
||||
// Inspired by IDEA-61275
|
||||
|
||||
String text =
|
||||
"/**\n" +
|
||||
" * This is a test comment\n" +
|
||||
" */\n" +
|
||||
"public <caret>class Test {\n" +
|
||||
"}";
|
||||
init(text, TestFileType.JAVA);
|
||||
|
||||
CaretModel caretModel = myEditor.getCaretModel();
|
||||
int caretOffset = caretModel.getOffset();
|
||||
|
||||
assertEquals(caretOffset, caretModel.getOffset());
|
||||
|
||||
updateFoldRegions();
|
||||
toggleFoldRegionState(getFoldRegion(0), false);
|
||||
type('a');
|
||||
updateFoldRegions();
|
||||
|
||||
assertEquals(caretOffset + 1, caretModel.getOffset());
|
||||
assertEquals(1, myEditor.getFoldingModel().getAllFoldRegions().length);
|
||||
FoldRegion foldRegion = getFoldRegion(0);
|
||||
assertFalse(foldRegion.isExpanded());
|
||||
}
|
||||
|
||||
private static void updateFoldRegions() {
|
||||
CodeFoldingManager.getInstance(getProject()).updateFoldRegions(myEditor);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user