Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
isochrone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Institut für Informatik
dbis
dbis-isochrone
isochrone
Commits
8fa5b446
"README.md" did not exist on "5bf61cce5162e1b3f8928e55550266dc3659b769"
Unverified
Commit
8fa5b446
authored
7 years ago
by
User expired
Browse files
Options
Downloads
Patches
Plain Diff
fixed broken tests
parent
5d6d6f4e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
src/test/java/it/unibz/inf/isochrone/algorithm/speed/EqualityTest.java
+26
-24
26 additions, 24 deletions
.../it/unibz/inf/isochrone/algorithm/speed/EqualityTest.java
with
27 additions
and
24 deletions
CHANGELOG.md
+
1
−
0
View file @
8fa5b446
Upcoming version:
Upcoming version:
-----------------
-----------------
-
fixed broken tests (Nikolaus Krismer)
-
slightly reworked speed estimatino (added abstract classes to improve class hierarchy) (Nikolaus Krismer)
-
slightly reworked speed estimatino (added abstract classes to improve class hierarchy) (Nikolaus Krismer)
-
also changed speed estimation for cycling mode (Nikolaus Krismer)
-
also changed speed estimation for cycling mode (Nikolaus Krismer)
-
fixed problem in ElevationWalkingEstimation and increased ignorable angles to 2 degrees (Nikolaus Krismer)
-
fixed problem in ElevationWalkingEstimation and increased ignorable angles to 2 degrees (Nikolaus Krismer)
...
...
This diff is collapsed.
Click to expand it.
src/test/java/it/unibz/inf/isochrone/algorithm/speed/EqualityTest.java
+
26
−
24
View file @
8fa5b446
...
@@ -18,61 +18,63 @@ public class EqualityTest {
...
@@ -18,61 +18,63 @@ public class EqualityTest {
.
usingGetClass
()
.
usingGetClass
()
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
NONFINAL_FIELDS
)
.
verify
();
.
verify
();
}
}
@Test
@Test
public
void
testElevationWalking
()
{
public
void
testElevationWalking
()
{
EqualsVerifier
.
forClass
(
ElevationWalkingEstimation
.
class
)
EqualsVerifier
.
forClass
(
ElevationWalkingEstimation
.
class
)
.
usingGetClass
()
.
usingGetClass
()
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
verify
();
.
suppress
(
Warning
.
NONFINAL_FIELDS
)
.
verify
();
}
}
@Test
@Test
public
void
testNoop
()
{
public
void
testNoop
()
{
EqualsVerifier
.
forClass
(
NoopSpeedEstimation
.
class
)
EqualsVerifier
.
forClass
(
NoopSpeedEstimation
.
class
)
.
usingGetClass
()
.
usingGetClass
()
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
verify
();
.
verify
();
}
}
@Test
@Test
public
void
testSimple
()
{
public
void
testSimple
()
{
EqualsVerifier
.
forClass
(
SimpleSpeedEstimation
.
class
)
EqualsVerifier
.
forClass
(
SimpleSpeedEstimation
.
class
)
.
usingGetClass
()
.
usingGetClass
()
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
verify
();
.
verify
();
}
}
@Test
@Test
public
void
testUserProfile
()
{
public
void
testUserProfile
()
{
EqualsVerifier
.
forClass
(
UserProfileEstimation
.
class
)
EqualsVerifier
.
forClass
(
UserProfileEstimation
.
class
)
.
usingGetClass
()
.
usingGetClass
()
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
verify
();
.
verify
();
}
}
@Test
@Test
public
void
testWayTypeBike
()
{
public
void
testWayTypeBike
()
{
EqualsVerifier
.
forClass
(
WayTypeCyclingEstimation
.
class
)
EqualsVerifier
.
forClass
(
WayTypeCyclingEstimation
.
class
)
.
usingGetClass
()
.
usingGetClass
()
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
verify
();
.
verify
();
}
}
@Test
@Test
public
void
testWayTypeWalking
()
{
public
void
testWayTypeWalking
()
{
EqualsVerifier
.
forClass
(
WayTypeWalkingEstimation
.
class
)
EqualsVerifier
.
forClass
(
WayTypeWalkingEstimation
.
class
)
.
usingGetClass
()
.
usingGetClass
()
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
ALL_FIELDS_SHOULD_BE_USED
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
suppress
(
Warning
.
INHERITED_DIRECTLY_FROM_OBJECT
)
.
verify
();
.
verify
();
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment