Disable flaky tests mentioned in issue #643 and #699

This commit is contained in:
Ilkka Seppälä 2018-03-31 10:16:56 +03:00
parent 7d4ccc6490
commit 17ea0b17f6
2 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,7 @@
*/
package com.iluwatar.balking;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.concurrent.ExecutorService;
@ -37,6 +38,7 @@ public class WashingMachineTest {
private volatile WashingMachineState machineStateGlobal;
@Disabled
@Test
public void wash() throws Exception {
WashingMachine washingMachine = new WashingMachine();

View File

@ -24,6 +24,7 @@ package com.iluwatar.throttling;
import com.iluwatar.throttling.timer.ThrottleTimerImpl;
import com.iluwatar.throttling.timer.Throttler;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
@ -32,7 +33,8 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
* B2BServiceTest class to test the B2BService
*/
public class B2BServiceTest {
@Disabled
@Test
public void dummyCustomerApiTest() {
Tenant tenant = new Tenant("testTenant", 2);