Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1019)

Delta Between Two Patch Sets: Src/GoogleApis.Auth.Tests/OAuth2/Responses/AuthorizationCodeResponseUrlTests.cs

Issue 13972043: Issue 351: Reimplement OAuth2 (Step 3 - Tests, Flows and Credential) (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Left Patch Set: minor Created 10 years, 6 months ago
Right Patch Set: minor Created 10 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 /* 1 /*
2 Copyright 2013 Google Inc 2 Copyright 2013 Google Inc
3 3
4 Licensed under the Apache License, Version 2.0 (the "License"); 4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License. 5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at 6 You may obtain a copy of the License at
7 7
8 http://www.apache.org/licenses/LICENSE-2.0 8 http://www.apache.org/licenses/LICENSE-2.0
9 9
10 Unless required by applicable law or agreed to in writing, software 10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS, 11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and 13 See the License for the specific language governing permissions and
14 limitations under the License. 14 limitations under the License.
15 */ 15 */
16 16
17 using System; 17 using System;
18 using System.Collections.Generic; 18 using System.Collections.Generic;
19 using System.Linq; 19 using System.Linq;
20 using System.Text; 20 using System.Text;
21 21
22 using NUnit.Framework; 22 using NUnit.Framework;
23 23
24 namespace Google.Apis.Auth.OAuth2.Responses 24 namespace Google.Apis.Auth.OAuth2.Responses
25 { 25 {
26 /// <summary> 26 /// <summary>
27 /// Tests for <seealso cref="Google.Apis.Google.Apis.Auth.OAuth2.Responses.A uthorizationCodeResponseUrl"/>. 27 /// Tests for <seealso cref="Google.Apis.Auth.OAuth2.Responses.Authorization CodeResponseUrl"/>.
28 /// </summary> 28 /// </summary>
29 [TestFixture] 29 [TestFixture]
30 public class AuthorizationCodeResponseUrlTests 30 public class AuthorizationCodeResponseUrlTests
31 { 31 {
32 [Test] 32 [Test]
33 public void TestConstructor_Default() 33 public void TestConstructor_Default()
34 { 34 {
35 var response = new AuthorizationCodeResponseUrl(); 35 var response = new AuthorizationCodeResponseUrl();
36 Assert.Null(response.Code); 36 Assert.Null(response.Code);
37 Assert.Null(response.Error); 37 Assert.Null(response.Error);
(...skipping 30 matching lines...) Expand all
68 private void SubtestConstructor(AuthorizationCodeResponseUrl response) 68 private void SubtestConstructor(AuthorizationCodeResponseUrl response)
69 { 69 {
70 Assert.That(response.Code, Is.EqualTo("123")); 70 Assert.That(response.Code, Is.EqualTo("123"));
71 Assert.That(response.Error, Is.EqualTo("ERR")); 71 Assert.That(response.Error, Is.EqualTo("ERR"));
72 Assert.That(response.ErrorUri, Is.EqualTo("URI")); 72 Assert.That(response.ErrorUri, Is.EqualTo("URI"));
73 Assert.That(response.ErrorDescription, Is.EqualTo("DESC")); 73 Assert.That(response.ErrorDescription, Is.EqualTo("DESC"));
74 Assert.That(response.State, Is.EqualTo("STATE")); 74 Assert.That(response.State, Is.EqualTo("STATE"));
75 } 75 }
76 } 76 }
77 } 77 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b