contract-testing-demo

pact and java contract testing with micro-commits

git clone https://9o.is/git/contract-testing-demo.git

CanaryTest.java

(163B)


      1 import org.junit.Test;
      2 import static org.junit.Assert.*;
      3 
      4 public class CanaryTest {
      5     @Test
      6     public void infrastructure() {
      7         assertTrue(true);
      8     }
      9 }