Skip to content
Snippets Groups Projects
Commit 1003c059 authored by Christian Wulf's avatar Christian Wulf
Browse files

added assertion for negative check

parent b4e47a8d
No related branches found
No related tags found
No related merge requests found
package teetime.framework;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
......@@ -28,6 +29,8 @@ public class AnalysisConfigurationTest {
config.init();
assertTrue(config.getConsumerStages().contains(counter));
assertFalse(config.getConsumerStages().contains(clock));
assertTrue(config.getInfiniteProducerStages().contains(clock));
assertTrue(config.getFiniteProducerStages().contains(producer));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment