Newer
Older
adjustgpx-gui / src / test / java / osm / jp / gpx / Expecter.java
@haya4 haya4 on 2 May 2020 449 bytes テスト リファクタリング
package osm.jp.gpx;

public class Expecter {
    String value;
    boolean expect;
    String timeStr;
    double latD;
    double lonD;
    boolean magvar;

    public Expecter(String value, boolean expect, String timeStr, double latD, double lonD, boolean magvar) {
        this.value = value;
        this.expect = expect;
        this.timeStr = timeStr;
        this.latD = latD;
        this.lonD = lonD;
        this.magvar = magvar;
    }

}