From 8275d32df828f45dd68586333d23866983216752 Mon Sep 17 00:00:00 2001 From: Alexey Gopachenko Date: Thu, 12 Nov 2009 00:25:17 +0300 Subject: [PATCH] Bombed --- .../com/intellij/spellchecker/inspector/SplitterTest.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/plugins/spellchecker/testSrc/com/intellij/spellchecker/inspector/SplitterTest.java b/plugins/spellchecker/testSrc/com/intellij/spellchecker/inspector/SplitterTest.java index 727160248b..f4c1df0875 100644 --- a/plugins/spellchecker/testSrc/com/intellij/spellchecker/inspector/SplitterTest.java +++ b/plugins/spellchecker/testSrc/com/intellij/spellchecker/inspector/SplitterTest.java @@ -15,6 +15,7 @@ */ package com.intellij.spellchecker.inspector; +import com.intellij.idea.Bombed; import com.intellij.spellchecker.inspections.CheckArea; import com.intellij.spellchecker.inspections.TextSplitter; import junit.framework.Assert; @@ -24,6 +25,7 @@ import org.jetbrains.annotations.Nullable; import java.util.ArrayList; import java.util.Arrays; +import java.util.Calendar; import java.util.List; @@ -224,12 +226,17 @@ public class SplitterTest extends TestCase { correctListToCheck(checkAreas, text, new String[]{"BADD"}); correctIgnored(checkAreas, text, new String[]{}); } - public void testWordWithUmlauts() { + @Bombed(user = "shkate", month = Calendar.NOVEMBER, day = 20, year = 2009, + description = "solve problems with encoding when run on server") + public void testWordWithUmlauts() { String text = "rechtsbündig"; List checkAreas = TextSplitter.splitText(text); correctListToCheck(checkAreas, text, new String[]{"rechtsbündig"}); correctIgnored(checkAreas, text, new String[]{}); } + + @Bombed(user = "shkate", month = Calendar.NOVEMBER, day = 20, year = 2009, + description = "solve problems with encoding when run on server") public void testWordUpperCasedWithUmlauts() { String text = "rechtsbündig".toUpperCase(); List checkAreas = TextSplitter.splitText(text); -- 2.11.4.GIT