Tests.AuthenticationTests.AuthenticateWithNonExistingAccount C# (CSharp) Method

AuthenticateWithNonExistingAccount() private method

private AuthenticateWithNonExistingAccount ( ) : void
return void
        public void AuthenticateWithNonExistingAccount()
        {
            ITransloadit transloadit = new Transloadit.Transloadit("YOUR-PUBLIC-API-KEY", "YOUR-SECRET-KEY");
            IAssemblyBuilder assembly = new AssemblyBuilder();

            TransloaditResponse response = transloadit.InvokeAssembly(assembly);

            Assert.AreEqual("GET_ACCOUNT_UNKNOWN_AUTH_KEY", (string)response.Data["error"]);
        }