Package ma.glasnost.orika.test.primitives

Source Code of ma.glasnost.orika.test.primitives.BooleanTestCase$Primitive

/*
* Orika - simpler, better and faster Java bean mapping
*
* Copyright (C) 2011 Orika authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package ma.glasnost.orika.test.primitives;

import ma.glasnost.orika.MapperFacade;
import ma.glasnost.orika.MapperFactory;
import ma.glasnost.orika.metadata.ClassMapBuilder;
import ma.glasnost.orika.test.MappingUtil;

import org.junit.Assert;
import org.junit.Test;

public class BooleanTestCase {
   
    @Test
    public void testPrimtiveToWrapper() {
        MapperFactory factory = MappingUtil.getMapperFactory();
       
        factory.registerClassMap(ClassMapBuilder.map(Primitive.class, Wrapper.class).field("primitive", "wrapper").toClassMap());
       
        factory.build();
       
        MapperFacade mapper = factory.getMapperFacade();
       
        Wrapper source = new Wrapper();
        source.setWrapper(true);
       
        Primitive destination = mapper.map(source, Primitive.class);
        Assert.assertEquals(Boolean.TRUE, destination.isPrimitive());
       
    }
   
    @Test
    public void testWrapperToPrimtive() {
        MapperFactory factory = MappingUtil.getMapperFactory();
       
        factory.registerClassMap(ClassMapBuilder.map(Wrapper.class, Primitive.class).field("wrapper", "primitive").toClassMap());
       
        factory.build();
       
        MapperFacade mapper = factory.getMapperFacade();
       
        Primitive source = new Primitive();
        source.setPrimitive(true);
       
        Wrapper destination = mapper.map(source, Wrapper.class);
        Assert.assertEquals(true, destination.getWrapper());
       
    }
   
    public static class Primitive {
        private boolean primitive;
       
        public boolean isPrimitive() {
            return primitive;
        }
       
        public void setPrimitive(boolean primitive) {
            this.primitive = primitive;
        }
    }
   
    public static class Wrapper {
       
        private Boolean wrapper;
       
        public Boolean getWrapper() {
            return wrapper;
        }
       
        public void setWrapper(Boolean wrapper) {
            this.wrapper = wrapper;
        }
       
    }
   
}
TOP

Related Classes of ma.glasnost.orika.test.primitives.BooleanTestCase$Primitive

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.