001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.kernel.api.observer;
007
008import static org.junit.Assert.assertEquals;
009
010import org.junit.Test;
011
012/**
013 * <p>EventTypeTest class.</p>
014 *
015 * @author ajs6f
016 */
017public class EventTypeTest {
018
019    @Test()
020    public void testValueOf() {
021        assertEquals(EventType.RESOURCE_CREATION, EventType.valueOf("RESOURCE_CREATION"));
022    }
023}