Changeset 13103 in josm
- Timestamp:
- 2017-11-09T20:32:32+01:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r13097 r13103 32 32 <property name="javac.compiler" value="com.google.errorprone.ErrorProneAntCompilerAdapter" /> 33 33 <property name="java.lang.version" value="1.8" /> 34 <property name="jacoco.includes" value="org.openstreetmap.josm.*" /> 34 35 <property name="jacoco.inclbootstrapclasses" value="false" /> 35 36 <property name="jacoco.inclnolocationclasses" value="false" /> … … 457 458 <sequential> 458 459 <echo message="Running @{testfamily}@{testITsuffix} tests with JUnit"/> 459 <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" includes=" org.openstreetmap.josm.*${additionalCoverage}"460 460 <jacoco:coverage destfile="${test.dir}/jacoco@{testITsuffix}.exec" enabled="@{coverage}" includes="${jacoco.includes}" 461 inclbootstrapclasses="${jacoco.inclbootstrapclasses}" inclnolocationclasses="${jacoco.inclnolocationclasses}"> 461 462 <junit printsummary="yes" fork="true" forkmode="once"> 462 463 <jvmarg value="-Dfile.encoding=UTF-8"/> -
trunk/src/org/openstreetmap/josm/data/osm/IPrimitive.java
r9460 r13103 186 186 187 187 /** 188 * Determines if this primitive has no timestam information.189 * @return {@code true} if this primitive has no timestam information188 * Determines if this primitive has no timestamp information. 189 * @return {@code true} if this primitive has no timestamp information 190 190 * @see #getTimestamp 191 191 * @see #getRawTimestamp -
trunk/test/functional/org/openstreetmap/josm/data/osm/TaginfoTestIT.java
r12858 r13103 38 38 @Rule 39 39 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 40 public JOSMTestRules test = new JOSMTestRules().preferences() ;40 public JOSMTestRules test = new JOSMTestRules().preferences().timeout(20000); 41 41 42 42 /**
Note:
See TracChangeset
for help on using the changeset viewer.