Example #1
0
    /// <summary>
    /// Test 1
    /// this should pass if the response was an error telling us we need an email
    /// </summary>
    private void Test_1()
    {
        WWWForm form = new WWWForm();

        form.AddField("username", "testuser");
        form.AddField("password", "superpassword");
        backendManager.Send(RequestType.Post, "user", form, OnBackendResponse);
    }