Package no.kommune.bergen.soa.svarut.altinn.correspondence

Examples of no.kommune.bergen.soa.svarut.altinn.correspondence.CorrespondenceClient.send()


  @Test
  @Ignore
  public void sendLive() {
    CorrespondenceClient client = new CorrespondenceClient( settings );
    CorrespondenceMessage message = MockCorrespondenceClient.createMessage();
    int receiptId = client.send( message, null );
    Assert.assertFalse( 0 == receiptId );
  }

  @Test
  public void send() {
View Full Code Here


  @Test
  public void send() {
    CorrespondenceClient client = new MockCorrespondenceClient( settings );
    CorrespondenceMessage message = MockCorrespondenceClient.createMessage();
    int receiptId = client.send(message, null);
    Assert.assertEquals( 1, receiptId );
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.