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

COVERAGE SUMMARY FOR SOURCE FILE [ViewMenuTest.java]

nameclass, %method, %block, %line, %
ViewMenuTest.java100% (1/1)100% (2/2)100% (64/64)100% (21/21)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ViewMenuTest100% (1/1)100% (2/2)100% (64/64)100% (21/21)
ViewMenuTest (): void 100% (1/1)100% (3/3)100% (1/1)
testViewMenu (): void 100% (1/1)100% (61/61)100% (20/20)

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.ui;
17 
18import javax.swing.JMenuItem;
19 
20import net.sf.jomic.JomicTestFixture;
21import net.sf.jomic.comic.ComicView;
22 
23/**
24 *  TestCase for items in "View" menu.
25 *
26 * @author    Thomas Aglassinger
27 */
28public class ViewMenuTest extends JomicTestFixture
29{
30    public void testViewMenu()
31        throws Exception {
32        JomicFrame jomicFrame = setUpJomicFrame();
33        ComicView comicView = jomicFrame.getComicView();
34 
35        assertNotNull(comicView);
36 
37        JMenuItem viewActualSizeItem = findMenuItem("View|Actual size");
38        JMenuItem viewZoomToFitItem = findMenuItem("View|Zoom to fit");
39        JMenuItem viewZoomToFitHeightItem = findMenuItem("View|Zoom to fit height");
40        JMenuItem viewZoomToFitWidthItem = findMenuItem("View|Zoom to fit width");
41        JMenuItem rotateLeftItem = findMenuItem("View|Rotate left");
42        JMenuItem rotateRightItem = findMenuItem("View|Rotate right");
43 
44        viewActualSizeItem.doClick();
45        viewZoomToFitHeightItem.doClick();
46        viewZoomToFitWidthItem.doClick();
47        viewZoomToFitItem.doClick();
48 
49        for (int rotation = 0; rotation < 4; rotation += 1) {
50            System.gc();
51            rotateLeftItem.doClick();
52        }
53        for (int rotation = 0; rotation < 4; rotation += 1) {
54            System.gc();
55            rotateRightItem.doClick();
56        }
57    }
58}

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