How to use getFaultActor method of com.consol.citrus.ws.actions.SendSoapFaultAction class

Best Citrus code snippet using com.consol.citrus.ws.actions.SendSoapFaultAction.getFaultActor

Source:SendSoapFaultTestRunnerTest.java Github

copy

Full Screen

...58 when(soapServer.createProducer()).thenReturn(messageProducer);59 when(soapServer.getActor()).thenReturn(null);60 doAnswer(invocation -> {61 SoapFault message = (SoapFault) invocation.getArguments()[0];62 Assert.assertEquals(message.getFaultActor(), "faultActor");63 Assert.assertEquals(message.getFaultCode(), FAULT_CODE);64 Assert.assertEquals(message.getFaultString(), FAULT_STRING);65 return null;66 }).when(messageProducer).send(any(Message.class), any(TestContext.class));67 MockTestRunner builder = new MockTestRunner(getClass().getSimpleName(), applicationContext, context) {68 @Override69 public void execute() {70 soap(builder -> builder.server(soapServer)71 .sendFault()72 .faultActor("faultActor")73 .faultCode(FAULT_CODE)74 .faultString(FAULT_STRING));75 }76 };77 TestCase test = builder.getTestCase();78 Assert.assertEquals(test.getActionCount(), 1);79 Assert.assertEquals(test.getActions().get(0).getClass(), DelegatingTestAction.class);80 SendSoapFaultAction action = (SendSoapFaultAction)((DelegatingTestAction)test.getActions().get(0)).getDelegate();81 Assert.assertEquals(action.getName(), "send");82 Assert.assertEquals(action.getEndpoint(), soapServer);83 Assert.assertEquals(action.getMessageBuilder().getClass(), StaticMessageContentBuilder.class);84 StaticMessageContentBuilder messageBuilder = (StaticMessageContentBuilder) action.getMessageBuilder();85 Assert.assertEquals(messageBuilder.getMessage().getPayload(), "");86 Assert.assertEquals(messageBuilder.getMessageHeaders().size(), 0L);87 Assert.assertEquals(action.getFaultActor(), "faultActor");88 Assert.assertEquals(action.getFaultCode(), FAULT_CODE);89 Assert.assertEquals(action.getFaultString(), FAULT_STRING);90 }91 @Test92 public void testSendSoapFaultByEndpointName() {93 TestContext context = applicationContext.getBean(TestContext.class);94 context.setApplicationContext(applicationContextMock);95 reset(applicationContextMock, soapServer, messageProducer);96 when(soapServer.createProducer()).thenReturn(messageProducer);97 when(soapServer.getActor()).thenReturn(null);98 doAnswer(invocation -> {99 SoapFault message = (SoapFault) invocation.getArguments()[0];100 Assert.assertEquals(message.getFaultCode(), FAULT_CODE);101 Assert.assertEquals(message.getFaultString(), FAULT_STRING);102 return null;103 }).when(messageProducer).send(any(Message.class), any(TestContext.class));104 when(applicationContextMock.getBean(TestContext.class)).thenReturn(context);105 when(applicationContextMock.getBean("soapServer", Endpoint.class)).thenReturn(soapServer);106 when(applicationContextMock.getBean(TestActionListeners.class)).thenReturn(new TestActionListeners());107 when(applicationContextMock.getBeansOfType(SequenceBeforeTest.class)).thenReturn(new HashMap<String, SequenceBeforeTest>());108 when(applicationContextMock.getBeansOfType(SequenceAfterTest.class)).thenReturn(new HashMap<String, SequenceAfterTest>());109 MockTestRunner builder = new MockTestRunner(getClass().getSimpleName(), applicationContextMock, context) {110 @Override111 public void execute() {112 soap(builder -> builder.server("soapServer")113 .sendFault()114 .faultCode(FAULT_CODE)115 .faultString(FAULT_STRING));116 }117 };118 TestCase test = builder.getTestCase();119 Assert.assertEquals(test.getActionCount(), 1);120 Assert.assertEquals(test.getActions().get(0).getClass(), DelegatingTestAction.class);121 SendSoapFaultAction action = (SendSoapFaultAction)((DelegatingTestAction)test.getActions().get(0)).getDelegate();122 Assert.assertEquals(action.getName(), "send");123 Assert.assertEquals(action.getEndpoint(), soapServer);124 Assert.assertEquals(action.getMessageBuilder().getClass(), StaticMessageContentBuilder.class);125 StaticMessageContentBuilder messageBuilder = (StaticMessageContentBuilder) action.getMessageBuilder();126 Assert.assertEquals(messageBuilder.getMessage().getPayload(), "");127 Assert.assertEquals(messageBuilder.getMessageHeaders().size(), 0L);128 Assert.assertNull(action.getFaultActor());129 Assert.assertEquals(action.getFaultCode(), FAULT_CODE);130 Assert.assertEquals(action.getFaultString(), FAULT_STRING);131 }132 @Test133 public void testSendSoapFaultWithDetailResource() throws IOException {134 reset(resource, soapServer, messageProducer);135 when(soapServer.createProducer()).thenReturn(messageProducer);136 when(soapServer.getActor()).thenReturn(null);137 doAnswer(invocation -> {138 SoapFault message = (SoapFault) invocation.getArguments()[0];139 Assert.assertEquals(message.getFaultCode(), FAULT_CODE);140 Assert.assertEquals(message.getFaultString(), FAULT_STRING);141 Assert.assertEquals(message.getFaultDetails().size(), 1L);142 Assert.assertEquals(message.getFaultDetails().get(0), ERROR_DETAIL);...

Full Screen

Full Screen

Source:SendSoapFaultTestDesignerTest.java Github

copy

Full Screen

...66 Assert.assertEquals(action.getMessageBuilder().getClass(), StaticMessageContentBuilder.class);67 StaticMessageContentBuilder messageBuilder = (StaticMessageContentBuilder) action.getMessageBuilder();68 Assert.assertEquals(messageBuilder.getMessage().getPayload(), "");69 Assert.assertEquals(messageBuilder.getMessageHeaders().size(), 0L);70 Assert.assertEquals(action.getFaultActor(), "faultActor");71 Assert.assertEquals(action.getFaultCode(), FAULT_CODE);72 Assert.assertEquals(action.getFaultString(), FAULT_STRING);73 }74 @Test75 public void testSendSoapFaultByEndpointName() {76 reset(applicationContextMock);77 when(applicationContextMock.getBean(TestActionListeners.class)).thenReturn(new TestActionListeners());78 when(applicationContextMock.getBean("soapServer", Endpoint.class)).thenReturn(soapServer);79 when(applicationContextMock.getBeansOfType(SequenceBeforeTest.class)).thenReturn(new HashMap<String, SequenceBeforeTest>());80 when(applicationContextMock.getBeansOfType(SequenceAfterTest.class)).thenReturn(new HashMap<String, SequenceAfterTest>());81 MockTestDesigner builder = new MockTestDesigner(applicationContextMock, context) {82 @Override83 public void configure() {84 soap().server("soapServer")85 .sendFault()86 .faultCode(FAULT_CODE)87 .faultString(FAULT_STRING);88 }89 };90 builder.configure();91 TestCase test = builder.getTestCase();92 Assert.assertEquals(test.getActionCount(), 1);93 Assert.assertEquals(test.getActions().get(0).getClass(), DelegatingTestAction.class);94 Assert.assertEquals(((DelegatingTestAction)test.getActions().get(0)).getDelegate().getClass(), SendSoapFaultAction.class);95 SendSoapFaultAction action = (SendSoapFaultAction) ((DelegatingTestAction)test.getActions().get(0)).getDelegate();96 Assert.assertEquals(action.getName(), "send");97 Assert.assertEquals(action.getEndpoint(), soapServer);98 Assert.assertEquals(action.getMessageBuilder().getClass(), StaticMessageContentBuilder.class);99 StaticMessageContentBuilder messageBuilder = (StaticMessageContentBuilder) action.getMessageBuilder();100 Assert.assertEquals(messageBuilder.getMessage().getPayload(), "");101 Assert.assertEquals(messageBuilder.getMessageHeaders().size(), 0L);102 Assert.assertNull(action.getFaultActor());103 Assert.assertEquals(action.getFaultCode(), FAULT_CODE);104 Assert.assertEquals(action.getFaultString(), FAULT_STRING);105 }106 @Test107 public void testSendSoapFaultWithDetailResource() throws IOException {108 MockTestDesigner builder = new MockTestDesigner(applicationContext, context) {109 @Override110 public void configure() {111 soap().server(soapServer)112 .sendFault()113 .faultCode(FAULT_CODE)114 .faultDetailResource(resource)115 .faultString(FAULT_STRING);116 }...

Full Screen

Full Screen

Source:SendSoapFaultActionParserTest.java Github

copy

Full Screen

...41 Assert.assertEquals(action.getFaultCode(), "{http://www.citrusframework.org/faults}citrus-ns:FAULT-1000");42 Assert.assertEquals(action.getFaultString(), "FaultString");43 Assert.assertEquals(action.getFaultDetails().size(), 1);44 Assert.assertTrue(action.getFaultDetails().get(0).startsWith("<ns0:FaultDetail xmlns:ns0=\"http://www.consol.de/schemas/samples/sayHello.xsd\">"));45 Assert.assertNull(action.getFaultActor());46 47 // 2nd action48 action = getNextTestActionFromTest();49 Assert.assertEquals(action.getEndpoint(), beanDefinitionContext.getBean("soapServer"));50 Assert.assertNotNull(action.getMessageBuilder());51 Assert.assertEquals(action.getMessageBuilder().getClass(), PayloadTemplateMessageBuilder.class);52 53 messageBuilder = (PayloadTemplateMessageBuilder)action.getMessageBuilder();54 Assert.assertNull(messageBuilder.getPayloadData());55 Assert.assertNull(messageBuilder.getPayloadResourcePath());56 Assert.assertEquals(messageBuilder.getMessageHeaders().size(), 1);57 Assert.assertEquals(messageBuilder.getMessageHeaders().get("operation"), "sendFault");58 Assert.assertEquals(action.getFaultCode(), "{http://www.citrusframework.org/faults}citrus-ns:FAULT-1001");59 Assert.assertEquals(action.getFaultString(), "FaultString");60 Assert.assertEquals(action.getFaultDetails().size(), 0);61 Assert.assertEquals(action.getFaultDetailResourcePaths().size(), 1);62 Assert.assertEquals(action.getFaultDetailResourcePaths().get(0), "classpath:com/consol/citrus/ws/actions/test-fault-detail.xml");63 Assert.assertEquals(action.getFaultActor(), "FaultActor");64 }65}...

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.annotations.CitrusTest;2import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;3import com.consol.citrus.ws.actions.SendSoapFaultAction;4import org.testng.annotations.Test;5import static com.consol.citrus.actions.EchoAction.Builder.echo;6public class 3 extends TestNGCitrusTestDesigner {7 public void 3() {8 variable("faultActor", "faultActor");9 echo("getFaultActor method returns the fault actor.");10 SendSoapFaultAction.Builder sendSoapFault = SendSoapFaultAction.Builder.sendSoapFault();11 sendSoapFault.faultString("Technical error");12 sendSoapFault.faultActor("${faultActor}");13 sendSoapFault.faultDetail("<faultDetail>Unknown error</faultDetail>");14 sendSoapFault.faultDetail("<faultDetail>Unknown error</faultDetail>");15 sendSoapFault.header("operation", "e

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ws.actions;2import com.consol.citrus.testng.AbstractTestNGUnitTest;3import com.consol.citrus.ws.message.SoapFault;4import org.springframework.ws.soap.SoapFaultDetail;5import org.testng.Assert;6import org.testng.annotations.Test;7import java.util.*;8import static org.easymock.EasyMock.*;9public class SendSoapFaultActionTest extends AbstractTestNGUnitTest {10 private SoapFault fault = new SoapFault("FaultCode", "FaultString", "FaultActor", new HashMap<String, String>(){{11 put("key1", "value1");12 put("key2", "value2");13 }});14 private SendSoapFaultAction sendSoapFaultAction = new SendSoapFaultAction();15 public void testGetFaultActor() {16 SoapFaultDetail faultDetail = createMock(SoapFaultDetail.class);17 expect(faultDetail.getFaultDetailElementNames()).andReturn(new ArrayList<javax.xml.namespace.QName>(){{18 add(new javax.xml.namespace.QName("key1"));19 add(new javax.xml.namespace.QName("key2"));20 }}).times(2);21 expect(faultDetail.getFaultDetailElement(anyObject())).andReturn("value1").times(2);22 replay(faultDetail);23 fault.setFaultDetail(faultDetail);24 sendSoapFaultAction.setFault(fault);25 Assert.assertEquals(sendSoapFaultAction.getFaultActor(), "FaultActor");26 }27}28package com.consol.citrus.ws.actions;29import com.consol.citrus.testng.AbstractTestNGUnitTest;30import com.consol.citrus.ws.message.SoapFault;31import org.springframework.ws.soap.SoapFaultDetail;32import org.testng.Assert;33import org.testng.annotations.Test;34import java.util.*;35import static org.easymock.EasyMock.*;36public class SendSoapFaultActionTest extends AbstractTestNGUnitTest {37 private SoapFault fault = new SoapFault("FaultCode", "FaultString", "FaultActor", new HashMap<String, String>(){{38 put("key1", "value1");39 put("key2", "value2");40 }});41 private SendSoapFaultAction sendSoapFaultAction = new SendSoapFaultAction();

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ws.actions;2import com.consol.citrus.context.TestContext;3import com.consol.citrus.ws.message.SoapFault;4import com.consol.citrus.ws.message.SoapMessage;5import com.consol.citrus.ws.validation.SoapFaultValidator;6import org.springframework.util.StringUtils;7import org.springframework.ws.soap.SoapBody;8import org.springframework.ws.soap.SoapMessageFactory;9import org.springframework.ws.soap.SoapVersion;10import org.springframework.ws.soap.client.SoapFaultClientException;11import org.springframework.ws.soap.saaj.SaajSoapMessageFactory;12import javax.xml.soap.*;13import java.util.Map;14public class SendSoapFaultAction extends AbstractSendSoapFaultAction<SendSoapFaultAction> {15 private String faultCode;16 private String faultString;17 private String faultActor;18 private String faultDetail;19 private String faultDetailResourcePath;20 private SoapFaultValidator faultValidator = new SoapFaultValidator();21 public SendSoapFaultAction() {22 super("send-fault");23 }24 public void doExecute(TestContext context) {25 SOAPMessage soapMessage = createSoapFault(context);26 try {27 context.setVariable(getFaultVariable(), soapMessage);28 if (getEndpoint() != null) {29 getEndpoint().createProducer().send(new SoapMessage(soapMessage), context);30 }31 } catch (SoapFaultClientException e) {32 if (getFaultValidator() != null) {33 getFaultValidator().validateFault(new SoapFault(e), context);34 }35 } catch (Exception e) {36 throw new CitrusRuntimeException("Failed to send SOAP fault message", e);37 }38 }39 private SOAPMessage createSoapFault(TestContext context) {40 SOAPMessage soapMessage = null;41 try {42 SoapMessageFactory messageFactory = new SaajSoapMessageFactory();43 messageFactory.afterPropertiesSet();44 soapMessage = messageFactory.createWebServiceMessage().getSaajMessage();45 SOAPPart soapPart = soapMessage.getSOAPPart();46 SOAPEnvelope soapEnvelope = soapPart.getEnvelope();47 SOAPBody soapBody = soapEnvelope.getBody();48 SOAPFault soapFault = soapBody.addFault();49 if (StringUtils.hasText(faultCode)) {

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.dsl.design.TestDesigner;2import com.consol.citrus.dsl.runner.TestRunner;3import com.consol.citrus.ws.actions.SendSoapFaultAction;4import com.consol.citrus.ws.message.SoapFault;5public class GetFaultActor {6 public static void main(String[] args) {7 TestRunner runner = new TestRunner();8 TestDesigner designer = runner.design();9 designer.send().fault(new SoapFault().faultActor("faultActor"));10 designer.send().fault(new SoapFault().faultActor("faultActor"));11 SendSoapFaultAction sendSoapFaultAction = new SendSoapFaultAction();12 sendSoapFaultAction.setFaultActor("faultActor");13 designer.send(sendSoapFaultAction);14 System.out.println("getFaultActor: " + sendSoapFaultAction.getFaultActor());15 }16}

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus;2import org.testng.annotations.Test;3import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;4import com.consol.citrus.ws.actions.SendSoapFaultAction;5public class 3 extends TestNGCitrusTestDesigner {6 public void 3() {7 variable("faultActor", "faultActor");8 variable("faultCode", "faultCode");9 variable("faultString", "faultString");10 variable("faultDetail", "faultDetail");11 variable("faultRole", "faultRole");12 variable("faultCodeWithPrefix", "faultCodeWithPrefix");13 variable("faultCodeWithPrefixAndNamespace", "faultCodeWithPrefixAndNamespace");14 variable("faultCodeWithNamespace", "faultCodeWithNamespace");15 variable("faultCodeWithPrefixAndNamespaceURI", "faultCodeWithPrefixAndNamespaceURI");16 variable("faultCodeWithNamespaceURI", "faultCodeWithNamespaceURI");17 variable("faultStringOrReason", "faultStringOrReason");18 variable("faultNode", "faultNode");19 variable("faultRoleOrNode", "faultRoleOrNode");20 variable("faultDetailText", "faultDetailText");21 variable("faultDetailElement", "faultDetailElement");22 variable("faultDetailElements", "faultDetailElements");23 variable("faultDetailAny", "faultDetailAny");24 variable("faultDetailAnyElements", "faultDetailAnyElements");25 variable("faultDetailAnyElementsWithNamespace", "faultDetailAnyElementsWithNamespace");26 variable("faultDetailAnyElementsWithNamespaceURI", "faultDetailAnyElementsWithNamespaceURI");27 variable("faultDetailAnyElementsWithPrefixAndNamespace", "faultDetailAnyElementsWithPrefixAndNamespace");28 variable("faultDetailAnyElementsWithPrefixAndNamespaceURI", "faultDetailAnyElementsWithPrefixAndNamespaceURI");29 variable("faultDetailAnyElement", "faultDetailAnyElement");30 variable("faultDetailAnyElementWithNamespace", "faultDetailAnyElementWithNamespace");31 variable("faultDetailAnyElementWithNamespaceURI", "faultDetailAnyElementWithNamespaceURI");32 variable("faultDetailAnyElementWithPrefixAndNamespace", "faultDetailAnyElementWithPrefixAndNamespace");33 variable("faultDetailAnyElementWithPrefixAndNamespaceURI", "faultDetailAnyElementWithPrefixAndNamespaceURI");34 variable("faultDetailAnyAttribute", "faultDetailAnyAttribute");35 variable("

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ws.actions;2import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;3import org.testng.annotations.Test;4public class GetFaultActorJavaIT extends TestNGCitrusTestDesigner {5public void getFaultActorJavaIT() {6sendSoapFaultAction(sendSoapFaultActionBuilder -> sendSoapFaultActionBuilder7.wsClient("mySoapClient")8.faultActor("faultActor")9.faultString("Internal Server Error")10.faultDetail("<detail>Internal Server Error</detail>")11);12}13}

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.dsl.builder.SendSoapFaultBuilder;2import com.consol.citrus.dsl.builder.SendSoapFaultBuilder.SendSoapFaultActionBuilder;3import com.consol.citrus.dsl.runner.TestRunner;4import com.consol.citrus.ws.actions.SendSoapFaultAction;5import com.consol.citrus.ws.message.SoapFault;6import com.consol.citrus.ws.message.SoapFaultDefinition;7public class 3 {8 public static void main(String[] args) throws Exception {9 TestRunner runner = new TestRunner();10 SendSoapFaultBuilder.SendSoapFaultActionBuilder sendSoapFaultActionBuilder = SendSoapFaultBuilder.soapFault();11 SendSoapFaultAction sendSoapFaultAction = sendSoapFaultActionBuilder.build();12 SoapFaultDefinition soapFaultDefinition = sendSoapFaultAction.getSoapFaultDefinition();13 SoapFault soapFault = soapFaultDefinition.getSoapFault();14 soapFault.getFaultActor();15 }16}17import com.consol.citrus.dsl.builder.SendSoapFaultBuilder;18import com.consol.citrus.dsl.builder.SendSoapFaultBuilder.SendSoapFaultActionBuilder;19import com.consol.citrus.dsl.runner.TestRunner;20import com.consol.citrus.ws.actions.SendSoapFaultAction;21import com.consol.citrus.ws.message.SoapFault;22import com.consol.citrus.ws.message.SoapFaultDefinition;23public class 4 {24 public static void main(String[] args) throws Exception {25 TestRunner runner = new TestRunner();26 SendSoapFaultBuilder.SendSoapFaultActionBuilder sendSoapFaultActionBuilder = SendSoapFaultBuilder.soapFault();27 SendSoapFaultAction sendSoapFaultAction = sendSoapFaultActionBuilder.build();28 SoapFaultDefinition soapFaultDefinition = sendSoapFaultAction.getSoapFaultDefinition();29 SoapFault soapFault = soapFaultDefinition.getSoapFault();30 soapFault.getFaultCode();31 }32}33import com.consol.citrus.dsl.builder.SendSoapFaultBuilder;34import com.consol.citrus.dsl.builder.SendSoapFaultBuilder.SendSoapFaultActionBuilder;35import com.consol.citrus.dsl.runner.TestRunner;36import com.consol

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.samples;2import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;3import org.testng.annotations.Test;4public class Test3 extends TestNGCitrusTestDesigner {5 public void configure() {6 .faultString("Technical error occurred!")7 .faultActor("citrus:concat('Actor_', citrus:randomNumber(4))")8 .getFaultActor();9 }10}11package com.consol.citrus.samples;12import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;13import org.testng.annotations.Test;14public class Test4 extends TestNGCitrusTestDesigner {15 public void configure() {16 .faultString("Technical error occurred!")17 .faultActor("citrus:concat('Actor_', citrus:randomNumber(4))")18 .getFaultCode();19 }20}21package com.consol.citrus.samples;22import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;23import org.testng.annotations.Test;24public class Test5 extends TestNGCitrusTestDesigner {25 public void configure() {26 .faultString("Technical error occurred!")27 .faultActor("citrus:concat('Actor_', citrus:randomNumber(4))")28 .getFaultDetail();29 }30}31package com.consol.citrus.samples;32import com.consol.citrus.dsl.testng.TestNGCitrusTestDesigner;33import org.testng.annotations.Test;34public class Test6 extends TestNGCitrusTestDesigner {35 public void configure() {36 sendFault().faultCode("{http

Full Screen

Full Screen

getFaultActor

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.actions;2import com.consol.citrus.ws.actions.SendSoapFaultAction;3import com.consol.citrus.ws.actions.SendSoapFaultAction.Builder;4import com.consol.citrus.ws.message.SoapFault;5import org.apache.commons.lang3.StringUtils;6import org.springframework.util.Assert;7public class SendSoapFaultAction extends AbstractTestAction {8 private final SoapFault fault;9 private final String faultActor;10 private final String messageSelector;11 public SendSoapFaultAction(Builder builder) {12 super("send-fault", builder);13 this.fault = builder.fault;14 this.faultActor = builder.faultActor;15 this.messageSelector = builder.messageSelector;16 Assert.notNull(fault, "Fault is missing - use one of the builder methods to specify a fault");17 }18 public void doExecute(TestContext context) {19 if (StringUtils.isNotEmpty(messageSelector)) {20 context.getMessageSelector().set(messageSelector);21 }22 if (StringUtils.isNotEmpty(faultActor)) {23 context.setFaultActor(faultActor);24 }25 context.setFault(fault);26 }27 public SoapFault getFault() {28 return fault;29 }30 public String getFaultActor() {31 return faultActor;32 }33 public String getMessageSelector() {34 return messageSelector;35 }36 public static final class Builder extends AbstractTestAction.Builder<SendSoapFaultAction, Builder> {37 private SoapFault fault;38 private String faultActor;39 private String messageSelector;40 public static Builder sendSoapFault() {41 return new Builder();42 }43 public Builder fault(SoapFault fault) {

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Citrus automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful