How to use TestPlanEvent class of com.testsigma.event package

Best Testsigma code snippet using com.testsigma.event.TestPlanEvent

Source:TestPlanService.java Github

copy

Full Screen

...9package com.testsigma.service;10import com.testsigma.dto.BackupDTO;11import com.testsigma.dto.export.TestPlanXMLDTO;12import com.testsigma.event.EventType;13import com.testsigma.event.TestPlanEvent;14import com.testsigma.exception.ResourceNotFoundException;15import com.testsigma.exception.TestsigmaDatabaseException;16import com.testsigma.mapper.TestPlanMapper;17import com.testsigma.model.TestDevice;18import com.testsigma.model.TestPlan;19import com.testsigma.repository.TestPlanRepository;20import com.testsigma.specification.SearchCriteria;21import com.testsigma.specification.SearchOperation;22import com.testsigma.specification.TestPlanSpecificationsBuilder;23import lombok.RequiredArgsConstructor;24import lombok.extern.log4j.Log4j2;25import org.springframework.beans.factory.annotation.Autowired;26import org.springframework.context.ApplicationEventPublisher;27import org.springframework.data.domain.Page;28import org.springframework.data.domain.PageRequest;29import org.springframework.data.domain.Pageable;30import org.springframework.data.jpa.domain.Specification;31import org.springframework.stereotype.Service;32import java.io.IOException;33import java.util.ArrayList;34import java.util.List;35import java.util.Optional;36import java.util.Set;37@Service38@Log4j239@RequiredArgsConstructor(onConstructor = @__(@Autowired))40public class TestPlanService extends XMLExportService<TestPlan> {41 private final TestPlanRepository testPlanRepository;42 private final TestDeviceService testDeviceService;43 private final ApplicationEventPublisher applicationEventPublisher;44 private final TestPlanMapper mapper;45 public Optional<TestPlan> findOptional(Long id) {46 return testPlanRepository.findById(id);47 }48 public TestPlan find(Long id) throws TestsigmaDatabaseException {49 return testPlanRepository.findById(id).orElseThrow(() -> new TestsigmaDatabaseException(50 "Could not find resource with id:" + id));51 }52 public TestPlan findById(Long id) throws TestsigmaDatabaseException {53 return testPlanRepository.findById(id).orElse(null);54 }55 public Page<TestPlan> findAll(Specification<TestPlan> spec, Pageable pageable) {56 return this.testPlanRepository.findAll(spec, pageable);57 }58 public List<TestPlan> findAllByWorkspaceVersionId(Long versionId) {59 return this.testPlanRepository.findAllByWorkspaceVersionId(versionId);60 }61 public TestPlan create(TestPlan testPlan) {62 List<TestDevice> environments = testPlan.getTestDevices();63 testPlan = this.testPlanRepository.save(testPlan);64 testPlan.setTestDevices(environments);65 saveExecutionEnvironments(testPlan, false);66 publishEvent(testPlan, EventType.CREATE);67 return testPlan;68 }69 public TestPlan update(TestPlan testPlan) {70 testPlan = this.testPlanRepository.save(testPlan);71 publishEvent(testPlan, EventType.UPDATE);72 return testPlan;73 }74 public TestPlan updateTestPlanAndEnvironments(TestPlan testPlan) {75 saveExecutionEnvironments(testPlan, true);76 return update(testPlan);77 }78 public void destroy(Long id) throws TestsigmaDatabaseException {79 TestPlan testPlan = find(id);80 this.testPlanRepository.delete(testPlan);81 publishEvent(testPlan, EventType.DELETE);82 }83 private void saveExecutionEnvironments(TestPlan testPlan, boolean checkOrphanExecutionEnvironments) {84 if (checkOrphanExecutionEnvironments) {85 Set<Long> orphanTestDeviceIds = testPlan.getOrphanTestDeviceIds();86 if (orphanTestDeviceIds.size() > 0)87 testDeviceService.delete(orphanTestDeviceIds);88 }89 for (TestDevice testDevice : testPlan.getTestDevices()) {90 if (testDevice.getTestPlanId() == null)91 testDevice.setTestPlanId(testPlan.getId());92 if (testDevice.getId() == null) {93 testDeviceService.create(testDevice);94 } else {95 testDeviceService.update(testDevice);96 }97 }98 }99 public void publishEvent(TestPlan testPlan, EventType eventType) {100 TestPlanEvent<TestPlan> event = createEvent(testPlan, eventType);101 log.info("Publishing event - " + event.toString());102 applicationEventPublisher.publishEvent(event);103 }104 public TestPlanEvent<TestPlan> createEvent(TestPlan testPlan, EventType eventType) {105 TestPlanEvent<TestPlan> event = new TestPlanEvent<>();106 event.setEventData(testPlan);107 event.setEventType(eventType);108 return event;109 }110 public void export(BackupDTO backupDTO) throws IOException, ResourceNotFoundException {111 if (!backupDTO.getIsTestPlanEnabled()) return;112 log.debug("backup process for execution initiated");113 writeXML("test_plans", backupDTO, PageRequest.of(0, 25));114 log.debug("backup process for execution completed");115 }116 @Override117 protected List<TestPlanXMLDTO> mapToXMLDTOList(List<TestPlan> list) {118 return mapper.mapToXMLDTOList(list);119 }...

Full Screen

Full Screen

Source:TestPlanEventListener.java Github

copy

Full Screen

1package com.testsigma.os.stats.listener;2import com.testsigma.event.EventType;3import com.testsigma.event.TestPlanEvent;4import com.testsigma.exception.TestsigmaException;5import com.testsigma.model.TestPlan;6import com.testsigma.os.stats.service.TestsigmaOsStatsService;7import lombok.RequiredArgsConstructor;8import lombok.extern.log4j.Log4j2;9import org.springframework.beans.factory.annotation.Autowired;10import org.springframework.context.event.EventListener;11import org.springframework.stereotype.Component;12@Log4j213@Component14@RequiredArgsConstructor(onConstructor = @__(@Autowired))15public class TestPlanEventListener {16 private final TestsigmaOsStatsService testsigmaOsStatsService;17 @EventListener(classes = TestPlanEvent.class)18 public void OnTestPlanEvent(TestPlanEvent<TestPlan> event) {19 log.info("Caught TestPlanEvent - " + event);20 try {21 if (event.getEventType() == EventType.CREATE) {22 testsigmaOsStatsService.sendTestPlanStats(event.getEventData(), com.testsigma.os.stats.event.EventType.CREATE);23 } else if (event.getEventType() == EventType.DELETE) {24 testsigmaOsStatsService.sendTestPlanStats(event.getEventData(), com.testsigma.os.stats.event.EventType.DELETE);25 }26 } catch (TestsigmaException e) {27 log.error(e.getMessage(), e);28 }29 }30}...

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.TestPlanEvent;2import com.testsigma.event.TestPlanEvent.EventType;3public class TestPlanEventTest {4 public static void main(String[] args) {5 TestPlanEvent event = new TestPlanEvent(EventType.BEFORE_SUITE, "suiteName", "testName");6 System.out.println(event.getEventType());7 System.out.println(event.getSuiteName());8 System.out.println(event.getTestName());9 }10}11import com.testsigma.event.TestPlanEvent;12import com.testsigma.event.TestPlanEvent.EventType;13import com.testsigma.event.TestPlanEventListener;14public class TestPlanEventListenerTest implements TestPlanEventListener {15 public static void main(String[] args) {16 TestPlanEventListenerTest listener = new TestPlanEventListenerTest();17 TestPlanEvent event = new TestPlanEvent(EventType.BEFORE_SUITE, "suiteName", "testName");18 listener.onEvent(event);19 }20 public void onEvent(TestPlanEvent event) {21 System.out.println(event.getEventType());22 System.out.println(event.getSuiteName());23 System.out.println(event.getTestName());24 }25}26import com.testsigma.event.TestPlanEvent;27import com.testsigma.event.TestPlanEvent.EventType;28import com.testsigma.event.TestPlanEventListener;29public class TestPlanEventListenerTest implements TestPlanEventListener {30 public static void main(String[] args) {31 TestPlanEventListenerTest listener = new TestPlanEventListenerTest();32 TestPlanEvent event = new TestPlanEvent(EventType.BEFORE_SUITE, "suiteName", "testName");33 listener.onEvent(event);34 }35 public void onEvent(TestPlanEvent event) {36 System.out.println(event.getEventType());37 System.out.println(event.getSuiteName());38 System.out.println(event.getTestName());39 }40}41import com.testsigma.event.TestPlanEvent;42import com.testsigma.event.TestPlanEvent.EventType;43import com.testsigma.event.TestPlanEventListener;

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.*;2import com.testsigma.event.TestPlanEvent;3public class TestPlanEventTest {4 public static void main(String[] args) {5 TestPlanEvent testPlanEvent = new TestPlanEvent();6 testPlanEvent.setTestPlanName("TestPlanName");7 testPlanEvent.setTestPlanID("TestPlanID");8 testPlanEvent.setTestPlanStatus("TestPlanStatus");9 testPlanEvent.setTestPlanType("TestPlanType");10 testPlanEvent.setTestPlanVersion("TestPlanVersion");11 testPlanEvent.setTestPlanDescription("TestPlanDescription");12 testPlanEvent.setTestPlanStartTime("TestPlanStartTime");13 testPlanEvent.setTestPlanEndTime("TestPlanEndTime");14 testPlanEvent.setTestPlanExecutionTime("TestPlanExecutionTime");15 testPlanEvent.setTestPlanEnvironment("TestPlanEnvironment");16 testPlanEvent.setTestPlanOwner("TestPlanOwner");17 testPlanEvent.setTestPlanPriority("TestPlanPriority");18 testPlanEvent.setTestPlanComments("TestPlanComments");19 testPlanEvent.setTestPlanProjectName("TestPlanProjectName");20 testPlanEvent.setTestPlanProjectID("TestPlanProjectID");21 testPlanEvent.setTestPlanProjectVersion("TestPlanProjectVersion");22 testPlanEvent.setTestPlanProjectDescription("TestPlanProjectDescription");23 testPlanEvent.setTestPlanProjectOwner("TestPlanProjectOwner");24 testPlanEvent.setTestPlanProjectPriority("TestPlanProjectPriority");25 testPlanEvent.setTestPlanProjectComments("TestPlanProjectComments");26 testPlanEvent.setTestPlanProjectStartTime("TestPlanProjectStartTime");27 testPlanEvent.setTestPlanProjectEndTime("TestPlanProjectEndTime");28 testPlanEvent.setTestPlanProjectExecutionTime("TestPlanProjectExecutionTime");29 testPlanEvent.setTestPlanProjectEnvironment("TestPlanProjectEnvironment");30 testPlanEvent.setTestPlanProjectStatus("TestPlanProjectStatus");31 testPlanEvent.setTestPlanProjectType("TestPlanProjectType");32 testPlanEvent.setTestPlanProjectTestCases("TestPlanProjectTestCases");33 testPlanEvent.setTestPlanProjectTestSuites("TestPlanProjectTestSuites");34 testPlanEvent.setTestPlanProjectTestRuns("TestPlanProjectTestRuns");35 testPlanEvent.setTestPlanProjectTestPlan("TestPlanProjectTestPlan");36 testPlanEvent.setTestPlanProjectTestCasesPassed("TestPlanProject

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.*;2public class TestPlanEventTest {3 public static void main(String[] args) {4 TestPlanEvent event = new TestPlanEvent();5 event.setEventName("TestPlanEvent");6 event.setEventID("1234");7 event.setEventTime("2018-09-10 10:10:10");8 event.setTestPlanID("1234");9 event.setTestPlanName("TestPlan1");10 event.setTestPlanStatus("Passed");11 event.setTestPlanDescription("TestPlan1 Description");12 event.setTestPlanOwner("TestPlan1 Owner");13 event.setTestPlanProjectName("TestPlan1 ProjectName");14 event.setTestPlanProjectID("TestPlan1 ProjectID");15 event.setTestPlanProjectDescription("TestPlan1 ProjectDescription");16 event.setTestPlanProjectOwner("TestPlan1 ProjectOwner");17 event.setTestPlanProjectVersion("TestPlan1 ProjectVersion");18 event.setTestPlanProjectRelease("TestPlan1 ProjectRelease");19 event.setTestPlanProjectBuild("TestPlan1 ProjectBuild");20 event.setTestPlanProjectEnvironment("TestPlan1 ProjectEnvironment");21 event.setTestPlanProjectURL("TestPlan1 ProjectURL");22 event.setTestPlanProjectStartDate("TestPlan1 ProjectStartDate");23 event.setTestPlanProjectEndDate("TestPlan1 ProjectEndDate");24 event.setTestPlanProjectDuration("TestPlan1 ProjectDuration");25 event.setTestPlanProjectStatus("TestPlan1 ProjectStatus");26 event.setTestPlanProjectExecutionMode("TestPlan1 ProjectExecutionMode");27 event.setTestPlanProjectExecutionType("TestPlan1 ProjectExecutionType");28 event.setTestPlanProjectExecutionPriority("TestPlan1 ProjectExecutionPriority");29 event.setTestPlanProjectExecutionStatus("TestPlan1 ProjectExecutionStatus");30 event.setTestPlanProjectExecutionStartDate("TestPlan1 ProjectExecutionStartDate");31 event.setTestPlanProjectExecutionEndDate("TestPlan1 ProjectExecutionEndDate");32 event.setTestPlanProjectExecutionDuration("TestPlan1 ProjectExecutionDuration");33 event.setTestPlanProjectExecutionPlatform("TestPlan1 ProjectExecutionPlatform");34 event.setTestPlanProjectExecutionBrowser("TestPlan1 ProjectExecutionBrowser");35 event.setTestPlanProjectExecutionBrowserVersion("TestPlan1 ProjectExecutionBrowserVersion");36 event.setTestPlanProjectExecutionBrowserPlatform("TestPlan1 ProjectExecutionBrowserPlatform");37 event.setTestPlanProjectExecutionBrowserLocale("

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.TestPlanEvent;2{3 public static void main(String[] args)4 {5 TestPlanEvent event = new TestPlanEvent();6 event.setTestPlanId("TestPlanId");7 event.setTestPlanName("TestPlanName");8 event.setTestPlanStatus("TestPlanStatus");9 event.setTestPlanType("TestPlanType");10 event.setTestPlanVersion("TestPlanVersion");11 event.setTestPlanDescription("TestPlanDescription");12 event.setTestPlanOwner("TestPlanOwner");13 event.setTestPlanPriority("TestPlanPriority");14 event.setTestPlanStartDate("TestPlanStartDate");15 event.setTestPlanEndDate("TestPlanEndDate");16 event.setTestPlanTags("TestPlanTags");17 event.setTestPlanNotes("TestPlanNotes");

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.TestPlanEvent;2import com.testsigma.event.TestPlanEvent.EventType;3import com.testsigma.event.TestPlanEvent.EventType;4import com.testsigma.event.TestPlanEvent.Status;5import com.testsigma.event.TestPlanEvent.Status;6import com.testsigma.event.TestPlanEvent;7import com.testsigma.event.TestPlanEvent.EventType;8import com.testsigma.event.TestPlanEvent.Status;9public class TestPlanEventTest {10public static void main(String[] args) {11TestPlanEvent tpe = new TestPlanEvent();12tpe.setEventType(EventType.START);13tpe.setStatus(Status.PASS);14tpe.setTestPlanName("Test Plan 1");15tpe.setTestPlanId(1);16tpe.setTestPlanDescription("Test Plan 1 Description");17tpe.setTestPlanOwner("Test Plan 1 Owner");18tpe.setTestPlanVersion("Test Plan 1 Version");19tpe.setTestPlanRelease("Test Plan 1 Release");20tpe.setTestPlanEnvironment("Test Plan 1 Environment");21tpe.setTestPlanTestSuite("Test Plan 1 Test Suite");22tpe.setTestPlanTestSuiteId(1);23tpe.setTestPlanTestSuiteDescription("Test Plan 1 Test Suite Description");24tpe.setTestPlanTestSuiteOwner("Test Plan 1 Test Suite Owner");25tpe.setTestPlanTestSuiteVersion("Test Plan 1 Test Suite Version");26tpe.setTestPlanTestSuiteRelease("Test Plan 1 Test Suite Release");27tpe.setTestPlanTestSuiteEnvironment("Test Plan 1 Test Suite Environment");28tpe.setTestPlanTestSuiteTestSuite("Test Plan 1 Test Suite Test Suite");29tpe.setTestPlanTestSuiteTestSuiteId(1);30tpe.setTestPlanTestSuiteTestSuiteDescription("Test Plan 1 Test Suite Test Suite Description");31tpe.setTestPlanTestSuiteTestSuiteOwner("Test Plan 1 Test Suite Test Suite Owner");32tpe.setTestPlanTestSuiteTestSuiteVersion("Test Plan 1 Test Suite Test Suite Version");33tpe.setTestPlanTestSuiteTestSuiteRelease("Test Plan 1 Test Suite Test Suite Release");34tpe.setTestPlanTestSuiteTestSuiteEnvironment("Test Plan 1 Test Suite Test Suite Environment");35tpe.setTestPlanTestSuiteTestSuiteTestCase("Test Plan 1 Test Suite Test Suite Test Case");36tpe.setTestPlanTestSuiteTestSuiteTestCaseId(1);

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.TestPlanEvent;2import com.testsigma.event.TestPlanEvent.TestPlanEventType;3import com.testsigma.event.TestPlanEvent.TestPlanEventStatus;4public class TestPlanEventTest {5 public static void main(String[] args) {6 TestPlanEvent testPlanEvent = new TestPlanEvent(TestPlanEventType.TestPlanStart, TestPlanEventStatus.Success, "TestPlanStart", "TestPlanStart");7 System.out.println(testPlanEvent);8 }9}10import com.testsigma.event.TestPlanEvent;11import com.testsigma.event.TestPlanEvent.TestPlanEventType;12import com.testsigma.event.TestPlanEvent.TestPlanEventStatus;13public class TestPlanEventTest {14 public static void main(String[] args) {15 TestPlanEvent testPlanEvent = new TestPlanEvent(TestPlanEventType.TestPlanStart, TestPlanEventStatus.Failure, "TestPlanStart", "TestPlanStart");16 System.out.println(testPlanEvent);17 }18}19import com.testsigma.event.TestPlanEvent;20import com.testsigma.event.TestPlanEvent.TestPlanEventType;21import com.testsigma.event.TestPlanEvent.TestPlanEventStatus;22public class TestPlanEventTest {23 public static void main(String[] args) {24 TestPlanEvent testPlanEvent = new TestPlanEvent(TestPlanEventType.TestPlanStart, TestPlanEventStatus.Skip, "TestPlanStart", "TestPlanStart");25 System.out.println(testPlanEvent);26 }27}28import com.testsigma.event.TestPlanEvent;29import com.testsigma.event.TestPlanEvent.TestPlanEventType;30import com.testsigma.event.Test

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.TestPlanEvent;2import java.io.IOException;3import java.io.InputStream;4import java.io.FileInputStream;5import java.io.FileNotFoundException;6import java.io.ObjectInputStream;7import java.io.ObjectOutputStream;8import java.io.FileOutputStream;9import java.io.File;10import java.util.ArrayList;11import java.util.List;12import java.util.Iterator;13import java.util.Date;14import java.text.SimpleDateFormat;15import java.text.ParseException;16import java.net.URL;17import java.net.MalformedURLException;18import java.net.HttpURLConnection;19import java.net.URLConnection;20import java.net.URLEncoder;21import java.net.URLDecoder;22import java.net.ProtocolException;23import java.net.UnknownHostException;24import java.net.ConnectException;25import java.net.SocketException;26import java.net.SocketTimeoutException;27import java.net.Socket;28import java.net.InetSocketAddress;29import java.net.Proxy;30import java.net.ProxySelector;31import java.net.URI;32import java.net.URISyntaxException;33import java.net.Authenticator;34import java.net.PasswordAuthentication;35import java.net.CookieHandler;36import java.net.CookieManager;37import java.net.CookiePolicy;38import java.net.CookieStore;39import java.net.HttpCookie;40import java.net.HttpRetryException;41import java.net.ServerSocket;42import java.net.SocketAddress;43import java.net.SocketImpl;44import java.net.SocketImplFactory;45import java.net.InetAddress;46import java.net.Inet4Address;47import java.net.Inet6Address;48import java.net.InetSocketAddress;49import java.net.NetworkInterface;50import java.net.SocketOption;51import java.net.StandardSocketOptions;52import java.net.DatagramSocket;53import java.net.DatagramPacket;54import java.net.MulticastSocket;55import java.net.SocketAddress;56import java.net.UnknownServiceException;57import java.net.UnknownHostException;58import java.net.ConnectException;59import java.net.NoRouteToHostException;60import java.net.PortUnreachableException;61import java.net.DatagramSocket;62import java.net.DatagramPacket;63import java.net.MulticastSocket;64import java.net.SocketAddress;65import java.net.UnknownServiceException;66import java.net.UnknownHostException;67import java.net.ConnectException;68import java.net.NoRouteToHostException;69import java.net.PortUnreachableException;70import java.net.DatagramSocket;71import java.net.DatagramPacket;72import java.net.MulticastSocket;73import java.net.SocketAddress;74import java.net.UnknownServiceException;75import java.net.UnknownHostException;76import java.net.ConnectException;77import java.net.NoRouteToHostException;78import java.net.PortUnreachableException;79import java.net.D

Full Screen

Full Screen

TestPlanEvent

Using AI Code Generation

copy

Full Screen

1import com.testsigma.event.TestPlanEvent;2import com.testsigma.event.TestPlanEventFactory;3public class TestPlanEvents {4 public static void main(String[] args) {5 TestPlanEventFactory eventFactory = TestPlanEventFactory.getInstance();6 TestPlanEvent event = eventFactory.createTestPlanEvent("my test plan");7 event.setTestPlanEvent("my test plan", "test case 1", "test step 1", "my log message");8 event.logEvent();9 }10}11import com.testsigma.event.TestPlanEvent;12import com.testsigma.event.TestPlanEventFactory;13public class TestPlanEvents {14 public static void main(String[] args) {15 TestPlanEventFactory eventFactory = TestPlanEventFactory.getInstance();16 TestPlanEvent event = eventFactory.createTestPlanEvent("my test plan");17 event.setTestPlanEvent("my test plan", "test case 1", "test step 1", "my log message");18 event.logEvent();19 }20}21import com.testsigma.event.TestPlanEvent;22import com.testsigma.event.TestPlanEventFactory;23public class TestPlanEvents {24 public static void main(String[] args) {25 TestPlanEventFactory eventFactory = TestPlanEventFactory.getInstance();26 TestPlanEvent event = eventFactory.createTestPlanEvent("my test plan");27 event.setTestPlanEvent("my test plan", "test case 1", "test step 1", "my log message");28 event.logEvent();29 }30}31import com.testsigma.event.TestPlanEvent;32import com.testsigma.event.TestPlanEventFactory;33public class TestPlanEvents {34 public static void main(String[] args) {35 TestPlanEventFactory eventFactory = TestPlanEventFactory.getInstance();36 TestPlanEvent event = eventFactory.createTestPlanEvent("my test plan");37 event.setTestPlanEvent("my test plan", "test case 1

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 Testsigma automation tests on LambdaTest cloud grid

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

Most used methods in TestPlanEvent

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful