-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
879251b
commit fad7a9b
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/test/java/com/fm/assignment/repository/constants/PathEntityConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.fm.assignment.repository.constants; | ||
|
||
/** | ||
* Created by Lenovo on 22/01/2018. | ||
*/ | ||
public class PathEntityConstants { | ||
public static final String FROM_CODE = "CMI1"; | ||
public static final String TO_CODE = "CMI2"; | ||
public static final Double COST = 10.0; | ||
public static final Long CONTAINER_SIZE = 10L; | ||
public static final String ROUTE_TYPE = "ALL"; | ||
public static final Long DURATION = 100L; | ||
} |