org.mayocat.configuration.json.TimeZoneModuleTest.java Source code

Java tutorial

Introduction

Here is the source code for org.mayocat.configuration.json.TimeZoneModuleTest.java

Source

/*
 * Copyright (c) 2012, Mayocat <hello@mayocat.org>
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.mayocat.configuration.json;

import java.util.TimeZone;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.mayocat.configuration.jackson.TimeZoneModule;

import com.fasterxml.jackson.databind.ObjectMapper;

/**
 * @version $Id: 1598f7fbd2b7b284868e1d5606f9df92228798a8 $
 */
public class TimeZoneModuleTest {
    private final ObjectMapper mapper = new ObjectMapper();

    @Rule
    public ExpectedException exception = ExpectedException.none();

    @Before
    public void setUp() throws Exception {
        mapper.registerModule(new TimeZoneModule());
    }

    @Test
    public void testTimeZoneDeserialization() throws Exception {
        Assert.assertEquals(TimeZone.getTimeZone("Europe/Paris"),
                mapper.readValue("\"Europe/Paris\"", TimeZone.class));
    }
}