- package osm.jp.gpx;
-
- import org.junit.After;
- import org.junit.AfterClass;
- import org.junit.Before;
- import org.junit.BeforeClass;
- import org.junit.Test;
- import static org.junit.Assert.*;
-
- /**
- *
- * @author yuu
- */
- public class RestampTest {
-
- public RestampTest() {
- }
-
- @BeforeClass
- public static void setUpClass() {
- }
-
- @AfterClass
- public static void tearDownClass() {
- }
-
- @Before
- public void setUp() {
- }
-
- @After
- public void tearDown() {
- }
-
- /**
- * Test of main method, of class Restamp.
- */
- @Test
- public void testMain() {
- try {
- System.out.println("main");
- String[] argv = new String[]{
- "/home/yuu/Desktop/OSM/20180325_横浜新道/img",
- "000033.jpg",
- "2018-03-25_12:20:32",
- "003752.jpg",
- "2018-03-25_13:22:42"
- };
- Restamp.main(argv);
- }
- catch (Exception e) {
- fail();
- }
- }
-
- }