How to use BigDecimalAssert class of org.assertj.core.api package

Best Assertj code snippet using org.assertj.core.api.BigDecimalAssert

Source:Assertions.java Github

copy

Full Screen

...13 * implied. See the License for the specific language governing14 * permissions and limitations under the License.15 */16package io.fabric8.jolokia.assertions;17import org.assertj.core.api.BigDecimalAssert;18import org.assertj.core.api.BooleanAssert;19import org.assertj.core.api.ByteAssert;20import org.assertj.core.api.CharacterAssert;21import org.assertj.core.api.DateAssert;22import org.assertj.core.api.DoubleAssert;23import org.assertj.core.api.FloatAssert;24import org.assertj.core.api.IntegerAssert;25import org.assertj.core.api.ListAssert;26import org.assertj.core.api.LongAssert;27import org.assertj.core.api.MapAssert;28import org.assertj.core.api.ShortAssert;29import org.assertj.core.api.StringAssert;30import org.jolokia.client.J4pClient;31import org.json.simple.JSONArray;32import org.json.simple.JSONObject;33import java.math.BigDecimal;34import java.util.Date;35import java.util.List;36import java.util.Map;37/**38 * Provides access to the assertThat() functions for creating asserts on Jolokia39 */40public class Assertions extends org.assertj.core.api.Assertions {41 public static JolokiaAssert assertThat(J4pClient client) {42 return new JolokiaAssert(client);43 }44 public static <T> T asInstanceOf(Object value, Class<T> clazz) {45 assertThat(value).isInstanceOf(clazz);46 return clazz.cast(value);47 }48 public static BigDecimalAssert assertBigDecimal(Object value) {49 BigDecimal typedValue = asInstanceOf(value, BigDecimal.class);50 return (BigDecimalAssert) assertThat(typedValue);51 }52 public static BooleanAssert assertBoolean(Object value) {53 Boolean typedValue = asInstanceOf(value, Boolean.class);54 return (BooleanAssert) assertThat(typedValue);55 }56 public static ByteAssert assertByte(Object value) {57 Byte typedValue = asInstanceOf(value, Byte.class);58 return (ByteAssert) assertThat(typedValue);59 }60 public static CharacterAssert assertCharacter(Object value) {61 Character typedValue = asInstanceOf(value, Character.class);62 return (CharacterAssert) assertThat(typedValue);63 }64 public static DateAssert assertDate(Object value) {...

Full Screen

Full Screen

Source:AssertJBigDecimalRules.java Github

copy

Full Screen

...4import com.google.errorprone.refaster.Refaster;5import com.google.errorprone.refaster.annotation.AfterTemplate;6import com.google.errorprone.refaster.annotation.BeforeTemplate;7import java.math.BigDecimal;8import org.assertj.core.api.AbstractBigDecimalAssert;9import org.assertj.core.api.BigDecimalAssert;10import tech.picnic.errorprone.refaster.annotation.OnlineDocumentation;11/**12 * Refaster rules related to AssertJ assertions over {@link BigDecimal}s.13 *14 * <p>Note that, contrary to collections of Refaster rules for other {@link15 * org.assertj.core.api.NumberAssert} subtypes, these rules do not rewrite to/from {@link16 * BigDecimalAssert#isEqualTo(Object)} and {@link BigDecimalAssert#isNotEqualTo(Object)}. This is17 * because {@link BigDecimal#equals(Object)} considers not only the numeric value of compared18 * instances, but also their scale. As a result various seemingly straightforward transformations19 * would actually subtly change the assertion's semantics.20 */21@OnlineDocumentation22final class AssertJBigDecimalRules {23 private AssertJBigDecimalRules() {}24 static final class AbstractBigDecimalAssertIsEqualByComparingTo {25 @BeforeTemplate26 AbstractBigDecimalAssert<?> before(AbstractBigDecimalAssert<?> bigDecimalAssert, BigDecimal n) {27 return Refaster.anyOf(28 bigDecimalAssert.isCloseTo(n, offset(BigDecimal.ZERO)),29 bigDecimalAssert.isCloseTo(n, withPercentage(0)));30 }31 @AfterTemplate32 AbstractBigDecimalAssert<?> after(AbstractBigDecimalAssert<?> bigDecimalAssert, BigDecimal n) {33 return bigDecimalAssert.isEqualByComparingTo(n);34 }35 }36 static final class AbstractBigDecimalAssertIsNotEqualByComparingTo {37 @BeforeTemplate38 AbstractBigDecimalAssert<?> before(AbstractBigDecimalAssert<?> bigDecimalAssert, BigDecimal n) {39 return Refaster.anyOf(40 bigDecimalAssert.isNotCloseTo(n, offset(BigDecimal.ZERO)),41 bigDecimalAssert.isNotCloseTo(n, withPercentage(0)));42 }43 @AfterTemplate44 AbstractBigDecimalAssert<?> after(AbstractBigDecimalAssert<?> bigDecimalAssert, BigDecimal n) {45 return bigDecimalAssert.isNotEqualByComparingTo(n);46 }47 }48}...

Full Screen

Full Screen

Source:RichBigDecimalAssert.java Github

copy

Full Screen

1package org.jedio.assertj;2import java.math.BigDecimal;3import org.assertj.core.api.BigDecimalAssert;4public class RichBigDecimalAssert extends BigDecimalAssert {5 public static BigDecimalAssert assertThatBigDecimal(BigDecimal value) {6 return new RichBigDecimalAssert(value);7 }8 public RichBigDecimalAssert(BigDecimal actual) {9 super(actual);10 }11 @Override12 public BigDecimalAssert isEqualTo(Object expected) {13 objects.assertEqual(info, cleanup(actual), cleanup(expected));14 return myself;15 }16 private String cleanup(Object value) {17 if (value instanceof Integer) {18 return ((Integer) value).toString();19 }20 if (value instanceof Double) {21 return cleanup(BigDecimal.valueOf((Double) value));22 }23 if (value instanceof BigDecimal) {24 return ((BigDecimal) value).stripTrailingZeros().toPlainString();25 }26 throw new IllegalArgumentException("Don't know how to cleanup as number an object of type " + value.getClass());...

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.Assertions.assertThat;2import java.math.BigDecimal;3public class BigDecimalAssert {4 public static void main(String[] args) {5 BigDecimal a = new BigDecimal("1.0");6 BigDecimal b = new BigDecimal("1.00");7 assertThat(a).isEqualByComparingTo(b);8 }9}10 assertThat(a).isEqualByComparingTo(b);

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.BigDecimalAssert;2import org.assertj.core.api.Assertions;3import org.junit.Test;4import java.math.BigDecimal;5public class BigDecimalAssertTest {6 public void test() {7 BigDecimalAssert bigDecimalAssert = Assertions.assertThat(new BigDecimal("2.00"));8 bigDecimalAssert.isEqualTo(new BigDecimal("2.00"));9 }10}

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1package com.automationrhapsody.junit4;2import static org.assertj.core.api.Assertions.assertThat;3import java.math.BigDecimal;4import org.junit.Test;5public class BigDecimalAssertTest {6 public void testAssertBigDecimal() {7 BigDecimal expected = new BigDecimal("1.00");8 BigDecimal actual = new BigDecimal("1.00");9 assertThat(actual).isEqualTo(expected);10 }11}12package com.automationrhapsody.junit4;13import static org.assertj.core.api.Assertions.assertThat;14import java.math.BigDecimal;15import org.junit.Test;16public class BigDecimalAssertTest {17 public void testAssertBigDecimal() {18 BigDecimal expected = new BigDecimal("1.00");19 BigDecimal actual = new BigDecimal("1.00");20 assertThat(actual).isEqualTo(expected);21 }22}23package com.automationrhapsody.junit4;24import static org.assertj.core.api.Assertions.assertThat;25import java.math.BigDecimal;26import org.junit.Test;27public class BigDecimalAssertTest {28 public void testAssertBigDecimal() {29 BigDecimal expected = new BigDecimal("1.00");30 BigDecimal actual = new BigDecimal("1.00");31 assertThat(actual).isEqualTo(expected);32 }33}34package com.automationrhapsody.junit4;35import static org.assertj.core.api.Assertions.assertThat;36import java.math.BigDecimal;37import org.junit.Test;38public class BigDecimalAssertTest {39 public void testAssertBigDecimal() {40 BigDecimal expected = new BigDecimal("1.00");41 BigDecimal actual = new BigDecimal("1.00");42 assertThat(actual).isEqualTo(expected);43 }44}45package com.automationrhapsody.junit4;46import static org.assertj.core.api.Assertions.assertThat;47import java.math.BigDecimal;48import org.junit.Test;49public class BigDecimalAssertTest {50 public void testAssertBigDecimal() {51 BigDecimal expected = new BigDecimal("1.00");52 BigDecimal actual = new BigDecimal("1.00");53 assertThat(actual).isEqualTo(expected);54 }55}

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1package com.automationrhapsody.assertj;2import org.junit.Test;3import java.math.BigDecimal;4import static org.assertj.core.api.Assertions.assertThat;5public class BigDecimalAssertTest {6 public void testAssertBigDecimal() {7 BigDecimal actual = new BigDecimal("123.45");8 assertThat(actual).isEqualTo(new BigDecimal("123.45"));9 }10}11OK (1 test)

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1package com.example;2import static org.assertj.core.api.Assertions.assertThat;3import static org.assertj.core.api.Assertions.assertThatExceptionOfType;4packat sgatice com.exampl.core.api.Assertionse;atchThrwable;5impot java.math.BigDcimal;6import org.junitTest;7public class BigDecimlAssertTest {8 ublic void testBigDecimalAssert() {9 BigDecimal bigDecimal = new BigDecimal("123.45");10 assertThat(bigDecimal).isEqualTo(new BigDecimal("123.45"));11 }12 public void testBigDecimalAssertWithMessage() {13 BigDecimal bigDecimal = new BigDecimal("123.45");14 assertThat(bigDecimal).isEqualTo(new BigDecimal("123.45"), "message");15 }16 public void testBigDecimalAssertWithMessageSupplier() {17 BigDecimal bigDecmal = new BigDecimal("12345");18 assertThat(bigDecimal).isEqualTo(new ("123.45"), () -> "message");19 }20 public void testBigDecimalWithMessageSupplierAndArgs() {21 BigDecimal bigDecimal = new BigDecimal("123.45")22 assertThat(bigDecimal).isEqualTo(new BigDecmal("123.45"), () -> "essage", "arg1", "arg2");23 }24 ublic vid testBigDecimalAsseWithMessageAndArgs(){25 BigDecimal bigDecimal = new BigDecimal("123.45");26 assertThat(bigDecimal).isEqualT(new BigDecimal("123.45"), "message", "arg1", "a2");27 }28 public void testBigDecimalAssertWithAssertThatExceptionOfType() {29 BigDecimal bigDecimal = new BigDecimal("12345");30 assertThtExceptionOfType(AionError.class)31 .isThrownBy(() -> assertThat(bigDecimal).isEqualTo(new BigDecimal("123.46")));32 }33 public void testBigDecimalAssertWithAssertThatExceptionOfTypeAndMessage() {34 BigDecimal bigDecimal = new BigDecimal("123.45");35 assertThatExceptionOfType(AssertionError.class)36 .isThrownBy(() -> assertThat(bigDecimal).isEqualTo(new BigDecimal("123.46"), "message"));37 }38 public void testBigDecimalAssertWithAssertThatExceptionOfTypeAndMessageSupplier() {39 BigDecimal bigDecimal = new BigDecimal("123.45");40 assertThatExceptionOfType(AssertionError.class)41 .isThrownBy(() -> assertThat(bigDecimal).isEqualTo(new BigDecimal("123.46"), () -> "message"));42 }43 public void testBigDecimalAssertWithAssertThatExceptionOfTypeAndMessageSupplierAndArgs()

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1package com.ack.junit.assertions;2import org.junit.Test;3import java.math.BigDecimal;4import static org.assertj.core.api.Assertions.assertThat;5public class BigDecimalAssertTest {6 public void testBigDecimalAssert() {7 BigDecimal bigDecimal = new BigDecimal( 100 );8 assertThat( bigDecimal ).isEqualTo( "100" );9 }10}11package com.ack.junit.assertions;12import org.junit.Test;13import java.math.BigDecimal;14import static org.assertj.core.api.Assertions.assertThat;15public class BigDecimalAssertTest {16 public void testBigDecimalAssert() {17 BigDecimal bigDecimal = new BigDecimal( 100 );18 assertThat( bigDecimal ).isEqualTo( 100 );19 }20}21package com.ack.junit.assertions;22import org.junit.Test;23import java.math.BigDecimal;24import static org.assertj.core.api.Assertions.assertThat;25public class BigDecimalAssertTest {26 public void testBigDecimalAssert() {27 BigDecimal bigDecimal = new BigDecimal( 100 );28 assertThat( bigDecimal ).isEqualTo( 100.00 );29 }30}31package com.ack.junit.assertions;32import org.junit.Test;33import java.math.BigDecimal;34import static org.assertj.core.api.Assertions.assertThat;35public class BigDecimalAssertTest {36 public void testBigDecimalAssert() {37 BigDecimal bigDecimal = new BigDecimal( 100 );38 assertThat( bigDecimal ).isEqualTo( 100.00f );39 }40}41package com.ack.junit.assertions;42import org.junit.Test;43import java.math.BigDecimal;44import static org.assertj.core.api.Assertions.assertThat;45public class BigDecimalAssertTest {46 public void testBigDecimalAssert() {47 BigDecimal bigDecimal = new BigDecimal( 100 );48 assertThat( bigDecimal ).isEqualTo( 100.00d );49 }50}51package com.ack.junit.assertions;52import org.junit.Test;53import java.math.BigDecimal;54import static org.assertj.core.api.Assertions.assertThat;55public class BigDecimalAssertTest {

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.BigDecimalAssert;2import org.assert3import static org.assertj.core.api.Assertions.assertThat;4import static org.assertj.core.api.Assertions.assertThatExceptionOfType;5import static org.assertj.core.api.Assertions.catchThrowable;6import java.math.BigDecimal;7import org.junit.Test;8public class BigDecimalAssertTest {9 public void testBigDecimalAssert() {10 BigDecimal bigDecimal = new BigDecimal("123.45");11 assertThat(bigDecimal).isEqualTo(new BigDecimal("123.45"));12 }13 public void testBigDecimalAssertWithMessage() {14 BigDecimal bigDecimal = new BigDecimal("123.45");15 assertThat(bigDecimal).isEqualTo(new BigDecimal("123.45"), "message");16 }17 public void testBigDecimalAssertWithMessageSupplier() {18 BigDecimal bigDecimal = new BigDecimal("123.45");19 assertThat(bigDecimal).isEqualTo(new BigDecimal("123.45"), () -> "message");20 }21 public void testBigDecimalAssertWithMessageSupplierAndArgs() {22 BigDecimal bigDecimal = new BigDecimal("123.45");23 assertThat(bigDecimal).isEqualTo(new BigDecimal("123.45"), () -> "message", "arg1", "arg2");24 }25 public void testBigDecimalAssertWithMessageAndArgs() {26 BigDecimal bigDecimal = new BigDecimal("123.45");27 assertThat(bigDecimal).isEqualTo(new BigDecimal("123.45"), "message", "arg1", "arg2");28 }29 public void testBigDecimalAssertWithAssertThatExceptionOfType() {30 BigDecimal bigDecimal = new BigDecimal("123.45");31 assertThatExceptionOfType(AssertionError.class)32 .isThrownBy(() -> assertThat(bigDecimal).isEqualTo(new BigDecimal("123.46")));33 }34 public void testBigDecimalAssertWithAssertThatExceptionOfTypeAndMessage() {35 BigDecimal bigDecimal = new BigDecimal("123.45");36 assertThatExceptionOfType(AssertionError.class)37 .isThrownBy(() -> assertThat(bigDecimal).isEqualTo(new BigDecimal("123.46"), "message"));38 }39 igDecimalAssert.isBetween("

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.rtions.*;2impot java.mahBigDecimal;3{4 public static void main(Strng[] arg)5 {6 igDecimalAssrExample obj = ne BigDecimalAssertExample();7 obj.testAssert();8 }9 public void testAssert()10 {11 BigDcimal bd = ew BigDecimal"100.00);12 BigDecimalAssert bda = new BigDecimalAssert(bd);13 bda.isEqualTo("100.00");14 bda.isNotEqualTo("200.00");15 bda.isEqualTo(new BigDecimal("100.00"));16 bda.isNotEqualTo(new BigDecimal("200.00"));17 }18}

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.Assertions.assertThat;2import java.math.BigDecimal;3import org.junit.Test;4public class BigDecimalAssertTest {5public void testBigDecimalAssert() {6BigDecimal bd1 = new BigDecimal("1.0");7BigDecimal bd2 = new BigDecimal("1.00");8BigDecimal bd3 = new BigDecimal("1.000");9BigDecimal bd4 = new BigDecimal("1.0000");10assertThat(bd1).isEqualByComparingTo(bd2);11assertThat(bd2).isEqualByComparingTo(bd3);12assertThat(bd3).isEqualByComparingTo(bd4);13}14}15by comparing values using 'compareTo()'16by comparing values using 'compareTo()'17by comparing values using 'compareTo()'18AssertJ BigDecimalAssert isEqualByComparingTo() Method19AssertJ BigDecimalAssert isEqualByComparingTo() Method Example20AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 221AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 322AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 423AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 524AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 625AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 726AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 827AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 928AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 10

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.Assertions.assertThat;2import java.math.BigDecimal;3import org.junit.Test;4public class BigDecimalAssertTest {5public void testBigDecimalAssert() {6BigDecimal bd1 = new BigDecimal("1.0");7BigDecimal bd2 = new BigDecimal("1.00");8BigDecimal bd3 = new BigDecimal("1.000");9BigDecimal bd4 = new BigDecimal("1.0000");10assertThat(bd1).isEqualByComparingTo(bd2);11assertThat(bd2).isEqualByComparingTo(bd3);12assertThat(bd3).isEqualByComparingTo(bd4);13}14}15by comparing values using 'compareTo()'16by comparing values using 'compareTo()'17by comparing values using 'compareTo()'18AssertJ BigDecimalAssert isEqualByComparingTo() Method19AssertJ BigDecimalAssert isEqualByComparingTo() Method Example20AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 221AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 322AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 423AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 524AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 625AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 726AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 827AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 928AssertJ BigDecimalAssert isEqualByComparingTo() Method Example 1029 public void testBigDecimalAssertWithAssertThatExceptionOfTypeAndMessageSupplier() {30 BigDecimal bigDecimal = new BigDecimal("123.45");31 assertThatExceptionOfType(AssertionError.class)32 .isThrownBy(() -> assertThat(bigDecimal).isEqualTo(new BigDecimal("123.46"), () -> "message"));33 }34 public void testBigDecimalAssertWithAssertThatExceptionOfTypeAndMessageSupplierAndArgs()

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.BigDecimalAssert;2import org.assertj.core.api.Assertions;3public class BigDecimalAssertTest {4public static void main(String[] args) {5BigDecimalAssert bigDecimalAssert = Assertions.assertThat(new BigDecimal("1.00"));6bigDecimalAssert.isZero();7bigDecimalAssert.isNotNegative();8bigDecimalAssert.isNotPositive();9bigDecimalAssert.isNotZero();10bigDecimalAssert.isNegative();11bigDecimalAssert.isPositive();12bigDecimalAssert.isEqualTo("1.00");13bigDecimalAssert.isNotEqualTo("1.01");14bigDecimalAssert.isGreaterThan("0.99");15bigDecimalAssert.isGreaterThanOrEqualTo("1.00");16bigDecimalAssert.isLessThan("1.01");17bigDecimalAssert.isLessThanOrEqualTo("1.00");18bigDecimalAssert.isBetween("0.99", "1.01");19bigDecimalAssert.isStrictlyBetween("0.99", "1.01");20}21}22bigDecimalAssert.isNotNegative();23symbol: method isNotNegative()24bigDecimalAssert.isNotPositive();25symbol: method isNotPositive()26import org.assertj.core.api.BigDecimalAssert;27import org.assertj.core.api.Assertions;28public class BigDecimalAssertTest {29public static void main(String[] args) {30BigDecimalAssert bigDecimalAssert = Assertions.assertThat(new BigDecimal("1.00"));31bigDecimalAssert.isZero();32bigDecimalAssert.isNotEqualTo(BigDecimal.ZERO);33bigDecimalAssert.isNotEqualTo(BigDecimal.ZERO.negate());34bigDecimalAssert.isNotZero();35bigDecimalAssert.isNegative();36bigDecimalAssert.isPositive();37bigDecimalAssert.isEqualTo("1.00");38bigDecimalAssert.isNotEqualTo("1.01");39bigDecimalAssert.isGreaterThan("0.99");40bigDecimalAssert.isGreaterThanOrEqualTo("1.00");41bigDecimalAssert.isLessThan("1.01");42bigDecimalAssert.isLessThanOrEqualTo("1.00");43bigDecimalAssert.isBetween("

Full Screen

Full Screen

BigDecimalAssert

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.Assertions.*;2import java.math.BigDecimal;3{4 public static void main(String[] args)5 {6 BigDecimalAssertExample obj = new BigDecimalAssertExample();7 obj.testAssert();8 }9 public void testAssert()10 {11 BigDecimal bd = new BigDecimal("100.00");12 BigDecimalAssert bda = new BigDecimalAssert(bd);13 bda.isEqualTo("100.00");14 bda.isNotEqualTo("200.00");15 bda.isEqualTo(new BigDecimal("100.00"));16 bda.isNotEqualTo(new BigDecimal("200.00"));17 }18}

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

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

Most used methods in BigDecimalAssert

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