|
@ -1,35 +1,26 @@ |
|
|
package device; |
|
|
package device; |
|
|
|
|
|
|
|
|
import org.junit.Before; |
|
|
|
|
|
import org.junit.jupiter.api.Test; |
|
|
import org.junit.jupiter.api.Test; |
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat; |
|
|
import static org.assertj.core.api.Assertions.assertThat; |
|
|
import static org.junit.jupiter.api.Assertions.*; |
|
|
|
|
|
|
|
|
|
|
|
class RadioPlayerTest { |
|
|
class RadioPlayerTest { |
|
|
|
|
|
|
|
|
RadioPlayer rp = new RadioPlayer(); |
|
|
RadioPlayer rp = new RadioPlayer(); |
|
|
|
|
|
|
|
|
@Before |
|
|
|
|
|
void setup() |
|
|
|
|
|
{ |
|
|
|
|
|
rp.setLautstaerke(0); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
@Test |
|
|
void louder() { |
|
|
void louder() { |
|
|
|
|
|
rp.setLautstaerke(0); |
|
|
rp.louder(); |
|
|
rp.louder(); |
|
|
assertThat(rp.getLautstaerke()).isEqualTo(1); |
|
|
assertThat(rp.getLautstaerke()).isEqualTo(1); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Before |
|
|
|
|
|
void setup1() |
|
|
|
|
|
{ |
|
|
|
|
|
rp.setLautstaerke(100); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
@Test |
|
|
void loudermax() { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void louderMax() { |
|
|
|
|
|
rp.setLautstaerke(100); |
|
|
|
|
|
rp.louder(); |
|
|
|
|
|
assertThat(rp.getLautstaerke()).isEqualTo(100); |
|
|
} |
|
|
} |
|
|
/* |
|
|
/* |
|
|
@Test |
|
|
@Test |
|
|