public void GetHtmlTest() { IOptions options = new ThreeDSSetupOptions(); string result = options.GetOptionString(); Assert.IsNotNull(result); Assert.IsTrue(result.Contains("\"threeDSSetup\":{")); }
public void GetHtmlWithOptionsTest() { IOptions options = new ThreeDSSetupOptions { ThreeDSActive = true }; string result = options.GetOptionString(); Assert.IsNotNull(result); Assert.IsTrue(result.Contains("\"threeDSSetup\":{")); Assert.IsTrue(result.Contains("\"threeDSActive\":\"true\"")); }