Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / test / java / org / gvsig / fmap / mapcontext / tools / persistence / DimensionPersistenceFactoryTest.java @ 40559

History | View | Annotate | Download (3.14 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2009 {}  {{Task}}
27
 */
28
package org.gvsig.fmap.mapcontext.tools.persistence;
29

    
30
import java.awt.Dimension;
31

    
32
import org.easymock.MockControl;
33

    
34
import org.gvsig.tools.ToolsLocator;
35
import org.gvsig.tools.junit.AbstractLibraryAutoInitTestCase;
36
import org.gvsig.tools.persistence.PersistenceManager;
37
import org.gvsig.tools.persistence.PersistentState;
38

    
39
/**
40
 * Unit tests for the class {@link DimensionPersistenceFactory}.
41
 * 
42
 * @author gvSIG team
43
 */
44
public class DimensionPersistenceFactoryTest extends
45
                AbstractLibraryAutoInitTestCase {
46

    
47
        private DimensionPersistenceFactory factory;
48
        private MockControl stateControl;
49
        private PersistentState state;
50
        private Dimension dimension;
51

    
52
        protected void doSetUp() throws Exception {
53
                PersistenceManager persistenceManager = ToolsLocator
54
                                .getPersistenceManager();
55
                factory = (DimensionPersistenceFactory) persistenceManager
56
                                .getFactories().get(Dimension.class);
57
                stateControl = MockControl.createNiceControl(PersistentState.class);
58
                state = (PersistentState) stateControl.getMock();
59
                dimension = new Dimension(320, 200);
60
        }
61

    
62
        /**
63
         * Test method for
64
         * {@link org.gvsig.fmap.mapcontext.tools.persistence.DimensionPersistenceFactory#createFromState(org.gvsig.tools.persistence.PersistentState, java.lang.Class)}
65
         * .
66
         */
67
        public void testCreateFromState() throws Exception {
68
                stateControl.expectAndReturn(state
69
                                .getInt(DimensionPersistenceFactory.FIELD_WIDTH), dimension.width);                        
70
                stateControl.expectAndReturn(state
71
                                .getInt(DimensionPersistenceFactory.FIELD_HEIGHT), dimension.height);                                
72
                stateControl.replay();
73

    
74
                Dimension newDimension = (Dimension) factory.createFromState(state);
75
                assertTrue(newDimension.equals(dimension));
76

    
77
                stateControl.verify();
78
        }
79

    
80
        /**
81
         * Test method for
82
         * {@link org.gvsig.fmap.mapcontext.tools.persistence.DimensionPersistenceFactory#saveToState(org.gvsig.tools.persistence.PersistentState, java.lang.Object)}
83
         * .
84
         */
85
        public void testSaveToState() throws Exception {
86
                state.set(DimensionPersistenceFactory.FIELD_WIDTH, dimension.width);
87
                state.set(DimensionPersistenceFactory.FIELD_HEIGHT, dimension.height);
88
                                
89
                stateControl.replay();
90

    
91
                factory.saveToState(state, dimension);
92

    
93
                stateControl.verify();
94
        }
95

    
96
}