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

Side by Side Diff: Src/GoogleApis.Tests/WebDiscoveryDeviceTests.cs

Issue 12020043: Issue 325 - Remove discovery and codegen (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: Sir miceli comment Created 10 years, 10 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:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 Copyright 2010 Google Inc
3
4 Licensed under the Apache License, Version 2.0 (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
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
17 using System;
18 using NUnit.Framework;
19 using Google.Apis.Discovery;
20
21 namespace Google.Apis.Tests
22 {
23 /// <summary>
24 /// Tests for the "WebDiscoveryDevice" class
25 /// </summary>
26 [TestFixture]
27 public class WebDiscoveryDeviceTests
28 {
29 /// <summary>
30 /// Tests that the constructor succeeds
31 /// </summary>
32 [Test]
33 public void Construct()
34 {
35 Assert.IsInstanceOf<WebDiscoveryDevice>(new WebDiscoveryDevice());
36 }
37
38 /// <summary>
39 /// Tests that the URI is saved when set at construction time
40 /// </summary>
41 [Test]
42 public void SetURI()
43 {
44 var device = new WebDiscoveryDevice { DiscoveryUri = new Uri("http:/ /test.com") };
45 Assert.IsNotNull(device.DiscoveryUri);
46 Assert.AreEqual("http://test.com/", device.DiscoveryUri.ToString());
47 }
48 }
49 }
OLDNEW
« no previous file with comments | « Src/GoogleApis.Tests/StringDiscoveryDeviceTests.cs ('k') | Src/GoogleApis.Tools.CodeGen.Tests/BaseCodeGeneratorTest.cs » ('j') | no next file with comments »

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