fixed tests
This commit is contained in:
parent
cde88f2ca9
commit
ff5dadd128
2 changed files with 5 additions and 3 deletions
|
@ -3,6 +3,7 @@ package ch.usi.inf.sa4.sanmarinoes.smarthut;
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
||||||
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.ButtonDimmer;
|
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.ButtonDimmer;
|
||||||
|
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.Dimmable;
|
||||||
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.DimmableLight;
|
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.DimmableLight;
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
import org.junit.jupiter.api.DisplayName;
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
@ -38,7 +39,7 @@ public class ButtonDimmerTests {
|
||||||
@DisplayName(" increase the intensity ")
|
@DisplayName(" increase the intensity ")
|
||||||
public void increase() {
|
public void increase() {
|
||||||
buttonDimmer.increaseIntensity();
|
buttonDimmer.increaseIntensity();
|
||||||
for (DimmableLight dl : buttonDimmer.getOutputs()) {
|
for (Dimmable dl : buttonDimmer.getOutputs()) {
|
||||||
assertTrue(dl.getIntensity() > 10);
|
assertTrue(dl.getIntensity() > 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,7 +48,7 @@ public class ButtonDimmerTests {
|
||||||
@DisplayName(" decrease the intensity ")
|
@DisplayName(" decrease the intensity ")
|
||||||
public void decrease() {
|
public void decrease() {
|
||||||
buttonDimmer.decreaseIntensity();
|
buttonDimmer.decreaseIntensity();
|
||||||
for (DimmableLight dl : buttonDimmer.getOutputs()) {
|
for (Dimmable dl : buttonDimmer.getOutputs()) {
|
||||||
assertTrue(dl.getIntensity() < 10);
|
assertTrue(dl.getIntensity() < 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ package ch.usi.inf.sa4.sanmarinoes.smarthut;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
||||||
|
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.Dimmable;
|
||||||
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.DimmableLight;
|
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.DimmableLight;
|
||||||
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.KnobDimmer;
|
import ch.usi.inf.sa4.sanmarinoes.smarthut.models.KnobDimmer;
|
||||||
import org.junit.jupiter.api.BeforeEach;
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
@ -38,7 +39,7 @@ public class KnobDimmerTests {
|
||||||
@DisplayName(" set the intensity ")
|
@DisplayName(" set the intensity ")
|
||||||
public void increase() {
|
public void increase() {
|
||||||
knobDimmer.setLightIntensity(30);
|
knobDimmer.setLightIntensity(30);
|
||||||
for (DimmableLight dl : knobDimmer.getOutputs()) {
|
for (Dimmable dl : knobDimmer.getOutputs()) {
|
||||||
assertEquals(30, dl.getIntensity());
|
assertEquals(30, dl.getIntensity());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue