-
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
David #359
Open
NagyDavei
wants to merge
28
commits into
ftsrg-retelab:master
Choose a base branch
from
Csongorcz:david
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
David #359
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
1166774
README hozzáadás
Csongorcz 38bac76
Merge pull request #2 from csongorczibulya33/newfeature
Csongorcz 91c4c8d
README javitása
Csongorcz 49ec0c5
README javitása újból
Csongorcz 68a1e6f
Create maven.yml
Csongorcz 9cb165d
vészfék implementálása
Csongorcz 55f31f4
vészfék implementálása javitása
Csongorcz e836103
vészfék implementálása javitása2
Csongorcz 177d67c
vészfék implementálása javitás3
Csongorcz cf3fd43
A branch változtatás
Csongorcz a8da6e7
B branch változtatás
Csongorcz ce0d1a4
konfliktus feloldása
Csongorcz 9f289dd
Merge branch 'master' of https://github.com/csongorczibulya33/retelab
Csongorcz 1ab2698
kod modositas
Csongorcz 4b19a99
Merge branch 'master' of https://github.com/csongorczibulya33/retelab
Csongorcz 52b2e39
kod kijavitása plusz uj teszt
Csongorcz a99f199
kod kijavitása plusz uj teszt2
Csongorcz 1462fbf
kod kijavitása plusz uj teszt3
Csongorcz a4a9b95
tachograf
Csongorcz d2430e7
tachograf javitas
Csongorcz 375ea2a
tachograf javitas2
Csongorcz c903bb7
tachograf javitas3
Csongorcz 3eadbe6
tachograf javitas4
Csongorcz b32b854
fix referencia
NagyDavei fd2bcee
változatások a kérés szerint
NagyDavei 95579f2
referenciasebbeseg javitasa
NagyDavei 169793e
referenciasebbeseg kijavitása a javaslatok szerint
NagyDavei 54edb59
referenciasebbeseg kijavitása a javaslatok szerint
NagyDavei 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 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
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
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/retelab/retelab/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
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,6 @@ public interface TrainController { | |
|
||
void setJoystickPosition(int joystickPosition); | ||
|
||
void emergencyBrake(); | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainSensor.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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
package hu.bme.mit.train.interfaces; | ||
import com.google.common.collect.Table; | ||
import java.time.LocalTime; | ||
import com.google.common.collect.HashBasedTable; | ||
|
||
public interface TrainSensor { | ||
|
||
int getSpeedLimit(); | ||
|
||
void overrideSpeedLimit(int speedLimit); | ||
|
||
void tachoGraf(); | ||
|
||
int size(); | ||
|
||
} |
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/retelab/retelab/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainUser.java | ||
/home/cloud/Desktop/retelab/retelab/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainSensor.java | ||
/home/cloud/Desktop/retelab/retelab/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainController.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
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
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/retelab/retelab/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/retelab/retelab/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.016" 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/retelab/retelab"/> | ||
<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/retelab/retelab"/> | ||
<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.016"/> | ||
</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.177 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
1 change: 1 addition & 0 deletions
1
...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 @@ | ||
hu/bme/mit/train/system/TrainSystem.class |
1 change: 1 addition & 0 deletions
1
...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 @@ | ||
/home/cloud/Desktop/retelab/retelab/train-system/src/main/java/hu/bme/mit/train/system/TrainSystem.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/system/TrainSystemTest.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/retelab/retelab/train-system/src/test/java/hu/bme/mit/train/system/TrainSystemTest.java |
68 changes: 68 additions & 0 deletions
68
train-system/target/surefire-reports/TEST-hu.bme.mit.train.system.TrainSystemTest.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,68 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite tests="5" failures="0" name="hu.bme.mit.train.system.TrainSystemTest" time="0.054" 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/retelab/retelab"/> | ||
<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/retelab/retelab"/> | ||
<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.TrainSystemTest" name="OverridingJoystickPositionToNegative_SetsReferenceSpeedToZero" time="0.005"/> | ||
<testcase classname="hu.bme.mit.train.system.TrainSystemTest" name="OverridingJoystickPosition_IncreasesReferenceSpeed" time="0"/> | ||
<testcase classname="hu.bme.mit.train.system.TrainSystemTest" name="Test" time="0"/> | ||
<testcase classname="hu.bme.mit.train.system.TrainSystemTest" name="hetesFeladatTest" time="0.049"/> | ||
<testcase classname="hu.bme.mit.train.system.TrainSystemTest" name="emergencyBrakeTest" time="0"/> | ||
</testsuite> |
4 changes: 4 additions & 0 deletions
4
train-system/target/surefire-reports/hu.bme.mit.train.system.TrainSystemTest.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.system.TrainSystemTest | ||
------------------------------------------------------------------------------- | ||
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.178 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
1 change: 1 addition & 0 deletions
1
...n-user/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/user/TrainUserImpl.class |
1 change: 1 addition & 0 deletions
1
train-user/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/retelab/retelab/train-user/src/main/java/hu/bme/mit/train/user/TrainUserImpl.java |
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.
ne randommal csináld