Subversion Repositories hibernate-spatial

Rev

Blame | Last modification | View Log | RSS feed

package org.hibernatespatial.wkb;

import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

/**
 * @author Karel Maesen, Geovise BVBA
 *         creation-date: Nov 11, 2010
 */
public class TestWKBGeometryType {

    @Test
    public void test_code_point(){
        WKBGeometryType wgt = WKBGeometryType.valueOf(1);
        assertEquals(WKBGeometryType.POINT, wgt);

    }




}