EMMA Coverage Report (generated Sat Oct 08 11:41:37 CEST 2011)
[all classes][net.sf.jomic.comic]

COVERAGE SUMMARY FOR SOURCE FILE [ConversionBeanTest.java]

nameclass, %method, %block, %line, %
ConversionBeanTest.java100% (1/1)100% (5/5)98%  (80/82)100% (20.9/21)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ConversionBeanTest100% (1/1)100% (5/5)98%  (80/82)100% (20.9/21)
testDisabledImageSizeLimit (): void 100% (1/1)96%  (53/55)99%  (9.9/10)
ConversionBeanTest (): void 100% (1/1)100% (3/3)100% (1/1)
setUp (): void 100% (1/1)100% (6/6)100% (3/3)
tearDown (): void 100% (1/1)100% (6/6)100% (3/3)
testUi (): void 100% (1/1)100% (12/12)100% (4/4)

1// Jomic - a viewer for comic book archives.
2// Copyright (C) 2004-2011 Thomas Aglassinger
3//
4// This program is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with this program.  If not, see <http://www.gnu.org/licenses/>.
16package net.sf.jomic.comic;
17 
18import javax.swing.JCheckBox;
19import javax.swing.JTextField;
20 
21import junit.extensions.abbot.ComponentTestFixture;
22import net.sf.jomic.tools.TestTools;
23import abbot.finder.matchers.ClassMatcher;
24 
25/**
26 *  TestCase for ConversionBean.
27 *
28 * @author    Thomas Aglassinger
29 */
30public class ConversionBeanTest extends ComponentTestFixture
31{
32    private TestTools testTools;
33 
34    protected void setUp()
35        throws Exception {
36        super.setUp();
37        testTools = TestTools.instance();
38    }
39 
40    public void testDisabledImageSizeLimit()
41        throws Exception {
42        ConversionBean bean = new ConversionBean();
43 
44        showFrame(bean);
45 
46        JCheckBox limitPageSizeCheckBox = (JCheckBox) getFinder().
47                find(new ClassMatcher(JCheckBox.class));
48        JTextField maxImageWidthFieldField = (JTextField) getFinder().
49                find(new ClassMatcher(JTextField.class));
50 
51        assertFalse(limitPageSizeCheckBox.isSelected());
52        assertFalse(maxImageWidthFieldField.isEnabled());
53        limitPageSizeCheckBox.doClick();
54 
55        assertTrue(limitPageSizeCheckBox.isSelected());
56        assertTrue(maxImageWidthFieldField.isEnabled());
57    }
58 
59    public void testUi() {
60        ConversionBean bean = new ConversionBean();
61 
62        showFrame(bean);
63        testTools.waitSomeTime();
64    }
65 
66    protected void tearDown()
67        throws Exception {
68        testTools = null;
69        super.tearDown();
70    }
71}

[all classes][net.sf.jomic.comic]
EMMA 2.0.4217 (C) Vladimir Roubtsov