André Schulz
André Schulz
Normally when doing team -> commit the cursor is in the comment box and you can start typing the comment. Since Eclipse 2018-09 (4.9.0) there is no cursor and typing...
I refer to https://github.com/junit-team/junit/wiki/Timeout-for-tests If I use ``` java @Rule public Timeout globalTimeout = Timeout.seconds(10); @Test(timeout=20000) public void testWithTimeout() { ... } ``` the test schould timeout afer 20s but...
There is a `NullReferenceException` during `Discover Ports. Receiving Messages ...` using latest master branch ``` >poweredup device list Scan Started. Please select the Hub (using a number keys or 'q'...
I am trying to use something like ``` Assumptions.assumeThrows(Exception.class, () -> program.run()); ``` to ignore the test if no exception was thrown. The test should e.g. check whether cleanup/rollback is...
`org.openstreetmap.osmosis.core.domain.v0_6.WayNode.WayNode(long)` initializes `nodeId` only. `latitude` and `longitude` is initializes implicitly, resulting in `0.0` Since `0.0` is a valid value, there is no explicit pointing on incomplete initialization. To make incomplete...