Browse Source

Mock SettingChangeListener instead of using a harness

tags/0.6.3m1rc1
Chris Smith 15 years ago
parent
commit
7826058c90

+ 3
- 5
test/com/dmdirc/config/prefs/PreferencesSettingTest.java View File

@@ -21,17 +21,16 @@
21 21
  */
22 22
 package com.dmdirc.config.prefs;
23 23
 
24
-import com.dmdirc.harness.TestSettingChangeListener;
25 24
 import com.dmdirc.config.IdentityManager;
26 25
 import com.dmdirc.config.prefs.validator.NotEmptyValidator;
27 26
 import com.dmdirc.config.prefs.validator.PermissiveValidator;
28 27
 import com.dmdirc.config.prefs.validator.StringLengthValidator;
29 28
 import java.util.HashMap;
30 29
 import java.util.Map;
31
-import org.junit.Before;
32 30
 import org.junit.BeforeClass;
33 31
 import org.junit.Test;
34 32
 import static org.junit.Assert.*;
33
+import static org.mockito.Mockito.*;
35 34
 
36 35
 public class PreferencesSettingTest {
37 36
     
@@ -137,14 +136,13 @@ public class PreferencesSettingTest {
137 136
         IdentityManager.getConfigIdentity().setOption("domain", "option", "fallback");
138 137
         final PreferencesSetting ps = new PreferencesSetting(PreferencesType.TEXT, "domain",
139 138
                 "option", "title", "helptext");
140
-        final TestSettingChangeListener tl = new TestSettingChangeListener();
139
+        final SettingChangeListener tl = mock(SettingChangeListener.class);
141 140
         ps.registerChangeListener(tl);
142 141
         ps.setValue("newvalue");
143 142
         ps.dismiss();
144 143
         ps.dismiss();
145 144
 
146
-        assertEquals(2, tl.count);
147
-        assertSame(ps, tl.setting);
145
+        verify(tl, times(2)).settingChanged(ps);
148 146
     }
149 147
     
150 148
     @Test

+ 0
- 37
test/com/dmdirc/harness/TestSettingChangeListener.java View File

@@ -1,37 +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
-
23
-package com.dmdirc.harness;
24
-
25
-import com.dmdirc.config.prefs.*;
26
-
27
-public class TestSettingChangeListener implements SettingChangeListener {
28
-
29
-    public int count;
30
-
31
-    public PreferencesSetting setting;
32
-
33
-    public void settingChanged(PreferencesSetting setting) {
34
-        count++;
35
-        this.setting = setting;
36
-    }
37
-}

Loading…
Cancel
Save