Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 package com.github.rosjava.rosjava_extras.hokuyo.scip20;
00018
00019 import junit.framework.TestCase;
00020
00024 public class ConfigurationTest extends TestCase {
00025
00026 private Configuration.Builder builder;
00027
00028 @Override
00029 protected void setUp() throws Exception {
00030 builder = new Configuration.Builder();
00031 }
00032
00033 public void testParseModel() {
00034 builder.parseModel("MODL:URG-04LX(Hokuyo Automatic Co., Ltd.);");
00035 assertEquals("URG-04LX(Hokuyo Automatic Co., Ltd.)", builder.build().getModel());
00036 }
00037
00038 public void testParseIntegerValue() {
00039
00040
00041 assertEquals(20, builder.parseIntegerValue("DMIN", "DMIN:20"));
00042 }
00043
00044
00045 }