blob: a2ff689521ade79370fe17a9157e0d1381c4d8bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//-----------------------------------------------------------------------
// <copyright file="TestUtilities.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test {
using System;
using System.Collections.Generic;
using System.Linq;
/// <summary>
/// An assortment of methods useful for testing.
/// </summary>
internal class TestUtilities {
}
}
|