-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ref speed mod #305
Open
LaszloAbrok
wants to merge
16
commits into
ftsrg-retelab:master
Choose a base branch
from
LaszloAbrok:ref-speed-mod
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Ref speed mod #305
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f893722
Create maven.yml
LaszloAbrok 486479c
#3 Markdown tasks
LaszloAbrok 4a6e5e7
Emergency brake implemenatiton
LaszloAbrok 3c7aefb
Merge pull request #2 from LaszloAbrok/emergency-brake
LaszloAbrok edef374
referenceSpeed to 1
LaszloAbrok fb72a05
referenceSpeed to 2
LaszloAbrok 6c5fdf8
merged A and B to master
LaszloAbrok 483f366
fixed an error in TrainControllerImpl
LaszloAbrok bd80f64
Merge branch 'master' of https://github.com/LaszloAbrok/base
LaszloAbrok a9d6190
fixed error of incorrect merge
LaszloAbrok 8f76036
referenceSpeed set to original value for passing test
LaszloAbrok 8bfb581
compilation error inserted
LaszloAbrok b428db3
error fixed and test inserted
LaszloAbrok 2b68578
tachograph implementation and test
LaszloAbrok 736d95b
ref speed mod
LaszloAbrok 23ee2f0
fixed review issues
LaszloAbrok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | ||
|
||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Java CI with Maven | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn -B package --file pom.xml | ||
|
||
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | ||
- name: Update dependency graph | ||
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 |
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
import hu.bme.mit.train.interfaces.TrainController; | ||
|
||
public class TrainControllerImpl implements TrainController { | ||
public class TrainControllerImpl implements TrainController, Runnable { | ||
|
||
private int step = 0; | ||
private int referenceSpeed = 0; | ||
|
@@ -16,6 +16,8 @@ public void followSpeed() { | |
if(referenceSpeed+step > 0) { | ||
referenceSpeed += step; | ||
} else { | ||
//This was modified for the previous task | ||
//Was set to correct value for passing test | ||
referenceSpeed = 0; | ||
} | ||
} | ||
|
@@ -43,7 +45,24 @@ private void enforceSpeedLimit() { | |
|
||
@Override | ||
public void setJoystickPosition(int joystickPosition) { | ||
this.step = joystickPosition; | ||
this.step = joystickPosition; | ||
try { | ||
Thread.sleep(100); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 200 ms reálisabb érték lenne |
||
} catch (Exception e) { | ||
System.out.println("thread exception"); | ||
} | ||
|
||
} | ||
|
||
@Override | ||
public void emergencyBrake(){ | ||
this.referenceSpeed=0; | ||
} | ||
|
||
|
||
public void run(){ | ||
while(true){ | ||
followSpeed(); | ||
} | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
...roller/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
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 @@ | ||
hu/bme/mit/train/controller/TrainControllerImpl.class |
1 change: 1 addition & 0 deletions
1
...ntroller/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
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 @@ | ||
/home/cloud/Desktop/mit2/base/train-controller/src/main/java/hu/bme/mit/train/controller/TrainControllerImpl.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 |
---|---|---|
|
@@ -10,4 +10,5 @@ public interface TrainController { | |
|
||
void setJoystickPosition(int joystickPosition); | ||
|
||
void emergencyBrake(); | ||
} |
3 changes: 3 additions & 0 deletions
3
...rfaces/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
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,3 @@ | ||
hu/bme/mit/train/interfaces/TrainController.class | ||
hu/bme/mit/train/interfaces/TrainSensor.class | ||
hu/bme/mit/train/interfaces/TrainUser.class |
3 changes: 3 additions & 0 deletions
3
...terfaces/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
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,3 @@ | ||
/home/cloud/Desktop/mit_3/base/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainUser.java | ||
/home/cloud/Desktop/mit_3/base/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainSensor.java | ||
/home/cloud/Desktop/mit_3/base/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainController.java |
1 change: 1 addition & 0 deletions
1
...sensor/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
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 @@ | ||
hu/bme/mit/train/sensor/TrainSensorImpl.class |
1 change: 1 addition & 0 deletions
1
...n-sensor/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
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 @@ | ||
/home/cloud/Desktop/mit_3/base/train-sensor/src/main/java/hu/bme/mit/train/sensor/TrainSensorImpl.java |
1 change: 1 addition & 0 deletions
1
...arget/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
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 @@ | ||
hu/bme/mit/train/sensor/TrainSensorTest.class |
1 change: 1 addition & 0 deletions
1
.../target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
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 @@ | ||
/home/cloud/Desktop/mit2/base/train-sensor/src/test/java/hu/bme/mit/train/sensor/TrainSensorTest.java |
64 changes: 64 additions & 0 deletions
64
train-sensor/target/surefire-reports/TEST-hu.bme.mit.train.sensor.TrainSensorTest.xml
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,64 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite tests="1" failures="0" name="hu.bme.mit.train.sensor.TrainSensorTest" time="0.002" errors="0" skipped="0"> | ||
<properties> | ||
<property name="java.runtime.name" value="OpenJDK Runtime Environment"/> | ||
<property name="java.vm.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="sun.boot.library.path" value="/usr/lib/jvm/java-11-openjdk-amd64/lib"/> | ||
<property name="maven.multiModuleProjectDirectory" value="/home/cloud/Desktop/mit_3/base"/> | ||
<property name="java.vm.vendor" value="Ubuntu"/> | ||
<property name="java.vendor.url" value="https://ubuntu.com/"/> | ||
<property name="guice.disable.misplaced.annotation.check" value="true"/> | ||
<property name="path.separator" value=":"/> | ||
<property name="java.vm.name" value="OpenJDK 64-Bit Server VM"/> | ||
<property name="sun.os.patch.level" value="unknown"/> | ||
<property name="user.country" value="US"/> | ||
<property name="sun.java.launcher" value="SUN_STANDARD"/> | ||
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> | ||
<property name="user.dir" value="/home/cloud/Desktop/mit_3/base"/> | ||
<property name="java.vm.compressedOopsMode" value="32-bit"/> | ||
<property name="java.runtime.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="java.awt.graphicsenv" value="sun.awt.X11GraphicsEnvironment"/> | ||
<property name="os.arch" value="amd64"/> | ||
<property name="java.io.tmpdir" value="/tmp"/> | ||
<property name="line.separator" value=" | ||
"/> | ||
<property name="java.vm.specification.vendor" value="Oracle Corporation"/> | ||
<property name="os.name" value="Linux"/> | ||
<property name="classworlds.conf" value="/usr/share/maven/bin/m2.conf"/> | ||
<property name="sun.jnu.encoding" value="UTF-8"/> | ||
<property name="java.library.path" value="/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"/> | ||
<property name="maven.conf" value="/usr/share/maven/conf"/> | ||
<property name="jdk.debug" value="release"/> | ||
<property name="java.class.version" value="55.0"/> | ||
<property name="java.specification.name" value="Java Platform API Specification"/> | ||
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> | ||
<property name="os.version" value="4.15.0-206-generic"/> | ||
<property name="library.jansi.path" value="/usr/share/maven/lib/jansi-native"/> | ||
<property name="user.home" value="/home/cloud"/> | ||
<property name="user.timezone" value="Europe/Budapest"/> | ||
<property name="java.awt.printerjob" value="sun.print.PSPrinterJob"/> | ||
<property name="file.encoding" value="UTF-8"/> | ||
<property name="java.specification.version" value="11"/> | ||
<property name="user.name" value="cloud"/> | ||
<property name="java.class.path" value="/usr/share/maven/boot/plexus-classworlds-2.x.jar"/> | ||
<property name="java.vm.specification.version" value="11"/> | ||
<property name="sun.arch.data.model" value="64"/> | ||
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher test"/> | ||
<property name="java.home" value="/usr/lib/jvm/java-11-openjdk-amd64"/> | ||
<property name="user.language" value="en"/> | ||
<property name="java.specification.vendor" value="Oracle Corporation"/> | ||
<property name="awt.toolkit" value="sun.awt.X11.XToolkit"/> | ||
<property name="java.vm.info" value="mixed mode, sharing"/> | ||
<property name="java.version" value="11.0.18"/> | ||
<property name="securerandom.source" value="file:/dev/./urandom"/> | ||
<property name="java.vendor" value="Ubuntu"/> | ||
<property name="maven.home" value="/usr/share/maven"/> | ||
<property name="file.separator" value="/"/> | ||
<property name="java.version.date" value="2023-01-17"/> | ||
<property name="java.vendor.url.bug" value="https://bugs.launchpad.net/ubuntu/+source/openjdk-lts"/> | ||
<property name="sun.io.unicode.encoding" value="UnicodeLittle"/> | ||
<property name="sun.cpu.endian" value="little"/> | ||
<property name="sun.cpu.isalist" value=""/> | ||
</properties> | ||
<testcase classname="hu.bme.mit.train.sensor.TrainSensorTest" name="ThisIsAnExampleTestStub" time="0.002"/> | ||
</testsuite> |
4 changes: 4 additions & 0 deletions
4
train-sensor/target/surefire-reports/hu.bme.mit.train.sensor.TrainSensorTest.txt
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,4 @@ | ||
------------------------------------------------------------------------------- | ||
Test set: hu.bme.mit.train.sensor.TrainSensorTest | ||
------------------------------------------------------------------------------- | ||
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.143 sec |
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
24 changes: 24 additions & 0 deletions
24
train-system/src/main/java/hu/bme/mit/train/system/Tachograph.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,24 @@ | ||
package hu.bme.mit.train.system; | ||
|
||
import com.google.common.collect.HashBasedTable; | ||
import com.google.common.collect.Table; | ||
|
||
public class Tachograph{ | ||
|
||
private Table<Integer, Integer, Integer> table; | ||
private TrainSystem system; | ||
|
||
public Tachograph(TrainSystem system){ | ||
table = HashBasedTable.create(); | ||
this.system=system; | ||
} | ||
|
||
public void newInput(Integer time){ | ||
table.put(time, system.getUser().getJoystickPosition(), system.getController().getReferenceSpeed()); | ||
} | ||
|
||
public int getReferenceSpeed(int time, int joystickPosition){ | ||
return table.get(time, joystickPosition); | ||
} | ||
|
||
} |
30 changes: 30 additions & 0 deletions
30
train-system/src/test/java/hu/bme/mit/train/system/TachographTest.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,30 @@ | ||
package hu.bme.mit.train.system; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
import hu.bme.mit.train.system.Tachograph; | ||
|
||
public class TachographTest { | ||
public Tachograph graph; | ||
public TrainSystem system; | ||
|
||
|
||
@Before | ||
public void before() { | ||
system=new TrainSystem(); | ||
graph = new Tachograph(system); | ||
} | ||
|
||
|
||
@Test | ||
public void EntryTest(){ | ||
|
||
graph.newInput(0); | ||
assertEquals(graph.getReferenceSpeed(0,system.getUser().getJoystickPosition()), system.getController().getReferenceSpeed()); | ||
} | ||
|
||
} |
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
2 changes: 2 additions & 0 deletions
2
...system/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
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,2 @@ | ||
hu/bme/mit/train/system/TrainSystem.class | ||
hu/bme/mit/train/system/Tachograph.class |
2 changes: 2 additions & 0 deletions
2
...n-system/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
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,2 @@ | ||
/home/cloud/Desktop/mit2/base/train-system/src/main/java/hu/bme/mit/train/system/TrainSystem.java | ||
/home/cloud/Desktop/mit2/base/train-system/src/main/java/hu/bme/mit/train/system/Tachograph.java |
2 changes: 2 additions & 0 deletions
2
...arget/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
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,2 @@ | ||
hu/bme/mit/train/system/TachographTest.class | ||
hu/bme/mit/train/system/TrainSystemTest.class |
2 changes: 2 additions & 0 deletions
2
.../target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
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,2 @@ | ||
/home/cloud/Desktop/mit2/base/train-system/src/test/java/hu/bme/mit/train/system/TrainSystemTest.java | ||
/home/cloud/Desktop/mit2/base/train-system/src/test/java/hu/bme/mit/train/system/TachographTest.java |
64 changes: 64 additions & 0 deletions
64
train-system/target/surefire-reports/TEST-hu.bme.mit.train.system.TachographTest.xml
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,64 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite tests="1" failures="0" name="hu.bme.mit.train.system.TachographTest" time="0.025" errors="0" skipped="0"> | ||
<properties> | ||
<property name="java.runtime.name" value="OpenJDK Runtime Environment"/> | ||
<property name="java.vm.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="sun.boot.library.path" value="/usr/lib/jvm/java-11-openjdk-amd64/lib"/> | ||
<property name="maven.multiModuleProjectDirectory" value="/home/cloud/Desktop/mit_3/base"/> | ||
<property name="java.vm.vendor" value="Ubuntu"/> | ||
<property name="java.vendor.url" value="https://ubuntu.com/"/> | ||
<property name="path.separator" value=":"/> | ||
<property name="guice.disable.misplaced.annotation.check" value="true"/> | ||
<property name="java.vm.name" value="OpenJDK 64-Bit Server VM"/> | ||
<property name="user.country" value="US"/> | ||
<property name="sun.java.launcher" value="SUN_STANDARD"/> | ||
<property name="sun.os.patch.level" value="unknown"/> | ||
<property name="user.dir" value="/home/cloud/Desktop/mit_3/base"/> | ||
<property name="java.vm.compressedOopsMode" value="32-bit"/> | ||
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> | ||
<property name="java.runtime.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="java.awt.graphicsenv" value="sun.awt.X11GraphicsEnvironment"/> | ||
<property name="os.arch" value="amd64"/> | ||
<property name="java.io.tmpdir" value="/tmp"/> | ||
<property name="line.separator" value=" | ||
"/> | ||
<property name="java.vm.specification.vendor" value="Oracle Corporation"/> | ||
<property name="os.name" value="Linux"/> | ||
<property name="classworlds.conf" value="/usr/share/maven/bin/m2.conf"/> | ||
<property name="sun.jnu.encoding" value="UTF-8"/> | ||
<property name="java.library.path" value="/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"/> | ||
<property name="maven.conf" value="/usr/share/maven/conf"/> | ||
<property name="jdk.debug" value="release"/> | ||
<property name="java.class.version" value="55.0"/> | ||
<property name="java.specification.name" value="Java Platform API Specification"/> | ||
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> | ||
<property name="os.version" value="4.15.0-206-generic"/> | ||
<property name="library.jansi.path" value="/usr/share/maven/lib/jansi-native"/> | ||
<property name="user.home" value="/home/cloud"/> | ||
<property name="user.timezone" value="Europe/Budapest"/> | ||
<property name="java.awt.printerjob" value="sun.print.PSPrinterJob"/> | ||
<property name="file.encoding" value="UTF-8"/> | ||
<property name="java.specification.version" value="11"/> | ||
<property name="user.name" value="cloud"/> | ||
<property name="java.class.path" value="/usr/share/maven/boot/plexus-classworlds-2.x.jar"/> | ||
<property name="java.vm.specification.version" value="11"/> | ||
<property name="sun.arch.data.model" value="64"/> | ||
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher test"/> | ||
<property name="java.home" value="/usr/lib/jvm/java-11-openjdk-amd64"/> | ||
<property name="user.language" value="en"/> | ||
<property name="java.specification.vendor" value="Oracle Corporation"/> | ||
<property name="awt.toolkit" value="sun.awt.X11.XToolkit"/> | ||
<property name="java.vm.info" value="mixed mode, sharing"/> | ||
<property name="java.version" value="11.0.18"/> | ||
<property name="securerandom.source" value="file:/dev/./urandom"/> | ||
<property name="java.vendor" value="Ubuntu"/> | ||
<property name="maven.home" value="/usr/share/maven"/> | ||
<property name="file.separator" value="/"/> | ||
<property name="java.version.date" value="2023-01-17"/> | ||
<property name="java.vendor.url.bug" value="https://bugs.launchpad.net/ubuntu/+source/openjdk-lts"/> | ||
<property name="sun.cpu.endian" value="little"/> | ||
<property name="sun.io.unicode.encoding" value="UnicodeLittle"/> | ||
<property name="sun.cpu.isalist" value=""/> | ||
</properties> | ||
<testcase classname="hu.bme.mit.train.system.TachographTest" name="EntryTest" time="0.025"/> | ||
</testsuite> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
48-as sor a try blockba kellenne, hogy kerüljön