blob: cb185029e1007421decaf634d9762f05b32bc35c [file] [log] [blame]
/*
* Copyright 2000-2011 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.actions;
import com.intellij.testFramework.LightPlatformCodeInsightTestCase;
import org.jetbrains.annotations.NotNull;
import java.io.IOException;
/**
* @author Denis Zhdanov
* @since 4/19/11 4:21 PM
*/
public class KillToWordStartActionTest extends LightPlatformCodeInsightTestCase {
public void testAfterWordEnd() throws IOException {
doTest(
"this is a test string <caret>",
"this is a test <caret>"
);
}
public void testAtWordEnd() throws IOException {
doTest(
"this is a test string<caret>",
"this is a test <caret>"
);
}
public void testInTheMiddleOfTheWord() throws IOException {
doTest(
"this is a test str<caret>ing",
"this is a test <caret>ing"
);
}
public void testInTheWordStart() throws IOException {
doTest(
"this is a test <caret>string",
"this is a <caret>string"
);
}
public void testInWhiteSpaceAtLineStart() throws IOException {
doTest(
"this is the first string \n" +
" <caret> this is the second string",
"this is the first <caret> this is the second string"
);
}
public void testAtLineStart() throws IOException {
doTest(
"this is the first string \n" +
"<caret> this is the second string",
"this is the first <caret> this is the second string"
);
}
public void testInWhiteSpaceAtDocumentStart() throws IOException {
doTest(
" <caret> this is the first string",
"<caret> this is the first string"
);
}
public void testAtDocumentStart() throws IOException {
doTest(
"<caret> this is the first string",
"<caret> this is the first string"
);
}
private void doTest(@NotNull String before, @NotNull String after) throws IOException {
configureFromFileText(getTestName(false) + ".txt", before);
killToWordStart();
checkResultByText(after);
}
}