summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/UriUtilTests.cs
blob: a2cf1a21c5c310d7a15a70178c0ceb4c90f22eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//-----------------------------------------------------------------------
// <copyright file="UriUtilTests.cs" company="Andrew Arnott">
//     Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.Test {
	using System;
	using System.Collections.Generic;
	using System.Linq;
	using System.Text;
	using NUnit.Framework;

	[TestFixture]
	public class UriUtilTests {
		[TestCase]
		public void QueryStringContainPrefixedParametersNull() {
			Assert.IsFalse(UriUtil.QueryStringContainPrefixedParameters(null, "prefix."));
		}
	}
}