Bladeren bron

Remove tabcompletionstyletest, as it's now an interface

tags/0.6.3m1rc1
Chris Smith 15 jaren geleden
bovenliggende
commit
2d9edc7605
1 gewijzigde bestanden met toevoegingen van 0 en 58 verwijderingen
  1. 0
    58
      test/com/dmdirc/ui/input/tabstyles/TabCompletionStyleTest.java

+ 0
- 58
test/com/dmdirc/ui/input/tabstyles/TabCompletionStyleTest.java Bestand weergeven

@@ -1,58 +0,0 @@
1
-/*
2
- * Copyright (c) 2006-2009 Chris Smith, Shane Mc Cormack, Gregory Holmes
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy
5
- * of this software and associated documentation files (the "Software"), to deal
6
- * in the Software without restriction, including without limitation the rights
7
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- * copies of the Software, and to permit persons to whom the Software is
9
- * furnished to do so, subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in
12
- * all copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
- * SOFTWARE.
21
- */
22
-package com.dmdirc.ui.input.tabstyles;
23
-
24
-import com.dmdirc.addons.ui_dummy.DummyInputWindow;
25
-import com.dmdirc.ui.input.AdditionalTabTargets;
26
-import com.dmdirc.ui.input.TabCompleter;
27
-import com.dmdirc.ui.interfaces.InputWindow;
28
-import org.junit.Test;
29
-import static org.junit.Assert.*;
30
-
31
-public class TabCompletionStyleTest {
32
-
33
-    @Test
34
-    public void testSetContext() {
35
-        final TabCompletionStyle style = new TabCompletionStyle() {
36
-
37
-            @Override
38
-            public String getName() {
39
-                throw new UnsupportedOperationException("Not supported yet.");
40
-            }
41
-
42
-            @Override
43
-            public TabCompletionResult getResult(String original, int start,
44
-                    int end, AdditionalTabTargets additional) {
45
-                throw new UnsupportedOperationException("Not supported yet.");
46
-            }
47
-        };
48
-        
49
-        final InputWindow window = new DummyInputWindow(null, null);
50
-        final TabCompleter tc = new TabCompleter();
51
-        
52
-        style.setContext(tc, window);
53
-        
54
-        assertEquals(tc, style.tabCompleter);
55
-        assertEquals(window, style.window);
56
-    }
57
-
58
-}

Laden…
Annuleren
Opslaan