AdjustTest.Pcl.TestAttributionHandler.TestAskAttribution C# (CSharp) Method

TestAskAttribution() public method

public TestAskAttribution ( ) : void
return void
        public void TestAskAttribution()
        {
            AttributionHandler attributionHandler = GetAttributionHandler(startPaused: false, hasDelegate: true);

            // test null client
            NullClientTest(attributionHandler);

            // test client exception
            ClientExceptionTest(attributionHandler);

            // test wrong json response
            WrongJsonTest(attributionHandler);

            // test empty response
            EmptyJsonResponseTest(attributionHandler);

            // test server error
            ServerErrorTest(attributionHandler);

            // test ok response with message
            OkMessageTest(attributionHandler);
        }