Index: Src/GoogleApis.Tests/Apis/Requests/Parameters/ParameterCollectionTest.cs =================================================================== rename from Src/GoogleApis.Tests/Apis/Requests/ParameterCollectionTest.cs rename to Src/GoogleApis.Tests/Apis/Requests/Parameters/ParameterCollectionTest.cs --- a/Src/GoogleApis.Tests/Apis/Requests/ParameterCollectionTest.cs +++ b/Src/GoogleApis.Tests/Apis/Requests/Parameters/ParameterCollectionTest.cs @@ -19,29 +19,23 @@ using NUnit.Framework; -using Google.Apis.Requests; +using Google.Apis.Requests.Parameters; using Google.Apis.Util; namespace Google.Apis.Tests.Apis.Requests { - /// - /// Tests for the ParameterCollection class. - /// + /// Tests for the ParameterCollection class. [TestFixture] public class ParameterCollectionTest { - /// - /// Tests the constructors. - /// + /// Tests the constructors. [Test] public void ConstructTest() { Assert.DoesNotThrow(() => new ParameterCollection()); } - /// - /// Confirm that different counts of items can be added to the collection. - /// + /// Confirm that different counts of items can be added to the collection. [Test] public void MultipleAddTest() { @@ -63,9 +57,7 @@ CollectionAssert.AreEqual(new[] { "dwarf" }, col.GetAllMatches("white")); } - /// - /// Checks that duplicates are supported. - /// + /// Checks that duplicates are supported. [Test] public void DuplicateTest() { @@ -77,7 +69,7 @@ CollectionAssert.AreEqual(new[] { "cookie", "bar", "pudding" }, col.GetAllMatches("chocolate")); } - /// Tests the FromQueryString method and confirms that duplicates are possible. + /// Tests the FromQueryString method and confirms that duplicates are possible. [Test] public void FromQueryStringTest() { @@ -88,7 +80,7 @@ CollectionAssert.AreEqual(new[] { "bar" }, collection.GetAllMatches("chocolate")); } - /// Tests the FromQueryString method throws exception on invalid input. + /// Tests the FromQueryString method throws exception on invalid input. [Test] public void FromQueryStringTest_Invalid() { @@ -96,9 +88,7 @@ Assert.Throws(() => ParameterCollection.FromQueryString(query)); } - /// - /// Tests the FromQueryString method. - /// + /// Tests the FromQueryString method. [Test] public void FromDictionaryTest() {