[fizzler] r263 committed - Moved imports inside namespace declarations.

1 view
Skip to first unread message

fiz...@googlecode.com

unread,
Feb 2, 2010, 5:29:33 PM2/2/10
to fizzler...@googlegroups.com
Revision: 263
Author: azizatif
Date: Tue Feb 2 14:28:39 2010
Log: Moved imports inside namespace declarations.

http://code.google.com/p/fizzler/source/detail?r=263

Modified:
/trunk/ConsoleFizzler/Command.cs
/trunk/ConsoleFizzler/CommandLine.cs
/trunk/ConsoleFizzler/ExplainCommand.cs
/trunk/ConsoleFizzler/NameValueCollectionExtensions.cs
/trunk/ConsoleFizzler/Program.cs
/trunk/ConsoleFizzler/SelectCommand.cs
/trunk/ConsoleFizzler/StringExtensions.cs
/trunk/Fizzler/Either.cs
/trunk/Fizzler/HumanReadableSelectorGenerator.cs
/trunk/Fizzler/NamespacePrefix.cs
/trunk/Fizzler/Parser.cs
/trunk/Fizzler/Reader.cs
/trunk/Fizzler/Selector.cs
/trunk/Fizzler/SelectorGenerator.cs
/trunk/Fizzler/SelectorGeneratorTee.cs
/trunk/Fizzler/SelectorsCachingCompiler.cs
/trunk/Fizzler/Token.cs
/trunk/Fizzler/Tokener.cs
/trunk/Fizzler.Sandbox/WinForms/ControlExtensions.cs
/trunk/Fizzler.Sandbox/WinForms/ControlOps.cs
/trunk/Fizzler.Sandbox/WinForms/ControlSelection.cs
/trunk/Fizzler.Sandbox/Xml/XmlNodeExtensions.cs
/trunk/Fizzler.Sandbox/Xml/XmlNodeOps.cs
/trunk/Fizzler.Sandbox/Xml/XmlNodeSelection.cs
/trunk/Fizzler.Systems.HtmlAgilityPack/HtmlDocumentExtensions.cs
/trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeExtensions.cs
/trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeOps.cs
/trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeSelection.cs
/trunk/Fizzler.Tests/AttributeSelectors.cs
/trunk/Fizzler.Tests/ChildAndAdjacentSelectors.cs
/trunk/Fizzler.Tests/ClassSelector.cs
/trunk/Fizzler.Tests/ElementSelector.cs
/trunk/Fizzler.Tests/HumanReadableSelectorGeneratorTests.cs
/trunk/Fizzler.Tests/IDSelector.cs
/trunk/Fizzler.Tests/MultipleSelectors.cs
/trunk/Fizzler.Tests/NamespacePrefixTests.cs
/trunk/Fizzler.Tests/NthChild.cs
/trunk/Fizzler.Tests/ParserTests.cs
/trunk/Fizzler.Tests/PsuedoSelectors.cs
/trunk/Fizzler.Tests/ReaderTests.cs
/trunk/Fizzler.Tests/SelectorBaseTest.cs
/trunk/Fizzler.Tests/SelectorGeneratorTeeTests.cs
/trunk/Fizzler.Tests/TokenTests.cs
/trunk/Fizzler.Tests/TokenerTests.cs

=======================================
--- /trunk/ConsoleFizzler/Command.cs Thu Apr 30 10:50:13 2009
+++ /trunk/ConsoleFizzler/Command.cs Tue Feb 2 14:28:39 2010
@@ -1,8 +1,8 @@
-using System;
-using System.Configuration;
-
namespace ConsoleFizzler
{
+ using System;
+ using System.Configuration;
+
internal abstract class Command : ICommand
{
public int Run(string[] args)
=======================================
--- /trunk/ConsoleFizzler/CommandLine.cs Mon May 11 12:59:40 2009
+++ /trunk/ConsoleFizzler/CommandLine.cs Tue Feb 2 14:28:39 2010
@@ -1,13 +1,16 @@
-using System;
-using System.Collections.Generic;
-using System.Collections.Specialized;
-using System.ComponentModel;
-using System.IO;
-using System.Linq;
-using System.Runtime.InteropServices;
-
-namespace ConsoleFizzler
-{
+namespace ConsoleFizzler
+{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.ComponentModel;
+ using System.IO;
+ using System.Linq;
+ using System.Runtime.InteropServices;
+
+ #endregion
+
static class CommandLine
{
private static readonly char[] _argSeparators = new[] { ':', '=' };
=======================================
--- /trunk/ConsoleFizzler/ExplainCommand.cs Thu Apr 30 10:50:13 2009
+++ /trunk/ConsoleFizzler/ExplainCommand.cs Tue Feb 2 14:28:39 2010
@@ -1,9 +1,13 @@
-using System;
-using System.Linq;
-using Fizzler;
-
namespace ConsoleFizzler
{
+ #region Imports
+
+ using System;
+ using System.Linq;
+ using Fizzler;
+
+ #endregion
+
internal sealed class ExplainCommand : Command
{
protected override int OnRun(string[] args)
=======================================
--- /trunk/ConsoleFizzler/NameValueCollectionExtensions.cs Thu Apr 30
10:50:13 2009
+++ /trunk/ConsoleFizzler/NameValueCollectionExtensions.cs Tue Feb 2
14:28:39 2010
@@ -1,10 +1,14 @@
-using System;
-using System.Collections.Generic;
-using System.Collections.Specialized;
-using System.Linq;
-
-namespace ConsoleFizzler
-{
+namespace ConsoleFizzler
+{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Collections.Specialized;
+ using System.Linq;
+
+ #endregion
+
static class NameValueCollectionExtensions
{
public static IEnumerable<string> KeysByPrefix(this
NameValueCollection collection, string prefix)
=======================================
--- /trunk/ConsoleFizzler/Program.cs Fri May 1 04:30:11 2009
+++ /trunk/ConsoleFizzler/Program.cs Tue Feb 2 14:28:39 2010
@@ -1,14 +1,18 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-
-using CommandNames = System.Collections.Generic.KeyValuePair<
- /* key */ System.Func<ConsoleFizzler.ICommand>,
- /* value */ System.Collections.Generic.IEnumerable<string>>;
-
-namespace ConsoleFizzler
-{
+namespace ConsoleFizzler
+{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Diagnostics;
+ using System.Linq;
+
+ using CommandNames = System.Collections.Generic.KeyValuePair<
+ /* key */ System.Func<ICommand>,
+ /* value */ System.Collections.Generic.IEnumerable<string>>;
+
+ #endregion
+
internal static class Program
{
internal static int Main(string[] args)
=======================================
--- /trunk/ConsoleFizzler/SelectCommand.cs Wed Sep 30 23:20:04 2009
+++ /trunk/ConsoleFizzler/SelectCommand.cs Tue Feb 2 14:28:39 2010
@@ -1,12 +1,16 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using Fizzler.Systems.HtmlAgilityPack;
-using HtmlAgilityPack;
-
namespace ConsoleFizzler
{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Diagnostics;
+ using System.Linq;
+ using Fizzler.Systems.HtmlAgilityPack;
+ using HtmlAgilityPack;
+
+ #endregion
+
internal sealed class SelectCommand : Command
{
private string _separator;
=======================================
--- /trunk/ConsoleFizzler/StringExtensions.cs Thu Apr 30 10:50:13 2009
+++ /trunk/ConsoleFizzler/StringExtensions.cs Tue Feb 2 14:28:39 2010
@@ -1,9 +1,13 @@
-using System;
-using System.Collections.Generic;
-using System.Globalization;
-
-namespace ConsoleFizzler
-{
+namespace ConsoleFizzler
+{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Globalization;
+
+ #endregion
+
static class StringExtensions
{
/// <summary>
=======================================
--- /trunk/Fizzler/Either.cs Wed Jun 3 13:26:53 2009
+++ /trunk/Fizzler/Either.cs Tue Feb 2 14:28:39 2010
@@ -21,11 +21,15 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

-using System;
-using System.Collections.Generic;
-
namespace Fizzler
{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+
+ #endregion
+
// Adapted from Mono Rocks

internal abstract class Either<TA, TB>
=======================================
--- /trunk/Fizzler/HumanReadableSelectorGenerator.cs Tue Jun 2 10:20:51
2009
+++ /trunk/Fizzler/HumanReadableSelectorGenerator.cs Tue Feb 2 14:28:39
2010
@@ -1,7 +1,7 @@
-using System;
-
namespace Fizzler
{
+ using System;
+
/// <summary>
/// An <see cref="ISelectorGenerator"/> implementation that generates
/// human-readable description of the selector.
=======================================
--- /trunk/Fizzler/NamespacePrefix.cs Tue Jun 2 10:20:51 2009
+++ /trunk/Fizzler/NamespacePrefix.cs Tue Feb 2 14:28:39 2010
@@ -1,7 +1,7 @@
-using System;
-
-namespace Fizzler
-{
+namespace Fizzler
+{
+ using System;
+
/// <summary>
/// Represent a type or attribute name.
/// </summary>
=======================================
--- /trunk/Fizzler/Parser.cs Sat Oct 31 12:19:36 2009
+++ /trunk/Fizzler/Parser.cs Tue Feb 2 14:28:39 2010
@@ -1,13 +1,17 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Globalization;
-using System.Linq;
-
namespace Fizzler
{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Diagnostics;
+ using System.Globalization;
+ using System.Linq;
+
using TokenSpec = Either<TokenKind, Token>;

+ #endregion
+
/// <summary>
/// Semantic parser for CSS selector grammar.
/// </summary>
=======================================
--- /trunk/Fizzler/Reader.cs Mon May 18 04:03:54 2009
+++ /trunk/Fizzler/Reader.cs Tue Feb 2 14:28:39 2010
@@ -1,9 +1,13 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
-
-namespace Fizzler
-{
+namespace Fizzler
+{
+ #region Imports
+
+ using System;
+ using System.Collections;
+ using System.Collections.Generic;
+
+ #endregion
+
/// <summary>
/// Adds reading semantics to a base <see cref="IEnumerator{T}"/> with
the
/// option to un-read and insert new elements while consuming the
source.
=======================================
--- /trunk/Fizzler/Selector.cs Fri May 1 10:02:24 2009
+++ /trunk/Fizzler/Selector.cs Tue Feb 2 14:28:39 2010
@@ -1,7 +1,7 @@
-using System.Collections.Generic;
-
namespace Fizzler
{
+ using System.Collections.Generic;
+
/// <summary>
/// Represents a selector implementation over an arbitrary type of
elements.
/// </summary>
=======================================
--- /trunk/Fizzler/SelectorGenerator.cs Tue Jun 2 10:20:51 2009
+++ /trunk/Fizzler/SelectorGenerator.cs Tue Feb 2 14:28:39 2010
@@ -1,9 +1,13 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-
namespace Fizzler
{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ #endregion
+
/// <summary>
/// A selector generator implementation for an arbitrary
document/element system.
/// </summary>
=======================================
--- /trunk/Fizzler/SelectorGeneratorTee.cs Tue Jun 2 10:20:51 2009
+++ /trunk/Fizzler/SelectorGeneratorTee.cs Tue Feb 2 14:28:39 2010
@@ -1,7 +1,7 @@
-using System;
-
namespace Fizzler
{
+ using System;
+
/// <summary>
/// An <see cref="ISelectorGenerator"/> implementation that delegates
/// to two other <see cref="ISelectorGenerator"/> objects, which
=======================================
--- /trunk/Fizzler/SelectorsCachingCompiler.cs Wed Nov 11 17:13:55 2009
+++ /trunk/Fizzler/SelectorsCachingCompiler.cs Tue Feb 2 14:28:39 2010
@@ -1,12 +1,10 @@
-using System.Diagnostics;
-
namespace Fizzler
{
#region Imports

using System;
using System.Collections.Generic;
- using System.Linq;
+ using System.Diagnostics;

#endregion

=======================================
--- /trunk/Fizzler/Token.cs Wed Jun 3 13:26:53 2009
+++ /trunk/Fizzler/Token.cs Tue Feb 2 14:28:39 2010
@@ -1,7 +1,7 @@
-using System;
-
namespace Fizzler
{
+ using System;
+
/// <summary>
/// Represent a token and optionally any text associated with it.
/// </summary>
=======================================
--- /trunk/Fizzler/Tokener.cs Wed Jun 3 13:26:53 2009
+++ /trunk/Fizzler/Tokener.cs Tue Feb 2 14:28:39 2010
@@ -1,11 +1,15 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.IO;
-using System.Text;
-
-namespace Fizzler
-{
+namespace Fizzler
+{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Diagnostics;
+ using System.IO;
+ using System.Text;
+
+ #endregion
+
/// <summary>
/// Lexer for tokens in CSS selector grammar.
/// </summary>
=======================================
--- /trunk/Fizzler.Sandbox/WinForms/ControlExtensions.cs Wed Apr 29
10:23:40 2009
+++ /trunk/Fizzler.Sandbox/WinForms/ControlExtensions.cs Tue Feb 2
14:28:39 2010
@@ -1,11 +1,15 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Diagnostics;
-using System.Windows.Forms;
-
-namespace Fizzler.Systems.WinForms
-{
+namespace Fizzler.Systems.WinForms
+{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.ComponentModel;
+ using System.Diagnostics;
+ using System.Windows.Forms;
+
+ #endregion
+
/// <summary>
/// Extension methods for <see cref="Control"/>.
/// </summary>
=======================================
--- /trunk/Fizzler.Sandbox/WinForms/ControlOps.cs Tue Jun 2 10:20:51 2009
+++ /trunk/Fizzler.Sandbox/WinForms/ControlOps.cs Tue Feb 2 14:28:39 2010
@@ -1,9 +1,13 @@
-using System;
-using System.Linq;
-using System.Windows.Forms;
-
namespace Fizzler.Systems.WinForms
{
+ #region Imports
+
+ using System;
+ using System.Linq;
+ using System.Windows.Forms;
+
+ #endregion
+
/// <summary>
/// An <see cref="IElementOps{TElement}"/> implementation for <see
cref="Control"/>
/// from Windows Forms.
=======================================
--- /trunk/Fizzler.Sandbox/WinForms/ControlSelection.cs Wed Apr 29 10:23:40
2009
+++ /trunk/Fizzler.Sandbox/WinForms/ControlSelection.cs Tue Feb 2 14:28:39
2010
@@ -1,9 +1,13 @@
-using System.Collections.Generic;
-using System.Linq;
-using System.Windows.Forms;
-
-namespace Fizzler.Systems.WinForms
-{
+namespace Fizzler.Systems.WinForms
+{
+ #region Imports
+
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Windows.Forms;
+
+ #endregion
+
/// <summary>
/// Selectors API for <see cref="Control"/>.
/// </summary>
=======================================
--- /trunk/Fizzler.Sandbox/Xml/XmlNodeExtensions.cs Wed Sep 30 10:53:50 2009
+++ /trunk/Fizzler.Sandbox/Xml/XmlNodeExtensions.cs Tue Feb 2 14:28:39 2010
@@ -1,12 +1,16 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Xml;
-
namespace Fizzler.Systems.XmlNodeQuery
{
- public static class XmlNodeExtensions
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Diagnostics;
+ using System.Linq;
+ using System.Xml;
+
+ #endregion
+
+ public static class XmlNodeExtensions
{
/// <summary>
/// Determines whether this node is an element or not.
=======================================
--- /trunk/Fizzler.Sandbox/Xml/XmlNodeOps.cs Wed Sep 30 10:53:50 2009
+++ /trunk/Fizzler.Sandbox/Xml/XmlNodeOps.cs Tue Feb 2 14:28:39 2010
@@ -1,10 +1,14 @@
-using System;
-using System.Linq;
-using System.Xml;
-
namespace Fizzler.Systems.XmlNodeQuery
{
- public class XmlNodeOps : IElementOps<XmlNode>
+ #region Imports
+
+ using System;
+ using System.Linq;
+ using System.Xml;
+
+ #endregion
+
+ public class XmlNodeOps : IElementOps<XmlNode>
{
public virtual Selector<XmlNode> Type(NamespacePrefix prefix, string
type)
{
=======================================
--- /trunk/Fizzler.Sandbox/Xml/XmlNodeSelection.cs Wed Sep 30 10:53:50 2009
+++ /trunk/Fizzler.Sandbox/Xml/XmlNodeSelection.cs Tue Feb 2 14:28:39 2010
@@ -1,10 +1,14 @@
-using System.Collections.Generic;
-using System.Linq;
-using System.Xml;
-
namespace Fizzler.Systems.XmlNodeQuery
{
- public static class XmlNodeSelection
+ #region Imports
+
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Xml;
+
+ #endregion
+
+ public static class XmlNodeSelection
{
/// <summary>
/// Similar to <see cref="QuerySelectorAll" /> except it returns
=======================================
--- /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlDocumentExtensions.cs Wed
Sep 30 23:20:04 2009
+++ /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlDocumentExtensions.cs Tue
Feb 2 14:28:39 2010
@@ -1,10 +1,14 @@
-using System;
-using System.Collections;
-using System.Runtime.CompilerServices;
-using HtmlAgilityPack;
-
-namespace Fizzler.Systems.HtmlAgilityPack
-{
+namespace Fizzler.Systems.HtmlAgilityPack
+{
+ #region Imports
+
+ using System;
+ using System.Collections;
+ using System.Runtime.CompilerServices;
+ using global::HtmlAgilityPack;
+
+ #endregion
+
public static class HtmlDocumentExtensions
{
private static Hashtable _defaultElementFlags;
=======================================
--- /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeExtensions.cs Thu Apr 30
10:44:03 2009
+++ /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeExtensions.cs Tue Feb 2
14:28:39 2010
@@ -1,12 +1,16 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Text;
-using HtmlAgilityPack;
-
namespace Fizzler.Systems.HtmlAgilityPack
{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Diagnostics;
+ using System.Linq;
+ using System.Text;
+ using global::HtmlAgilityPack;
+
+ #endregion
+
/// <summary>
/// HtmlNode extension methods.
/// </summary>
=======================================
--- /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeOps.cs Tue Jun 2
10:20:51 2009
+++ /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeOps.cs Tue Feb 2
14:28:39 2010
@@ -1,9 +1,13 @@
-using System;
-using System.Linq;
-using HtmlAgilityPack;
-
namespace Fizzler.Systems.HtmlAgilityPack
{
+ #region Imports
+
+ using System;
+ using System.Linq;
+ using global::HtmlAgilityPack;
+
+ #endregion
+
/// <summary>
/// An <see cref="IElementOps{TElement}"/> implementation for <see
cref="HtmlNode"/>
/// from <a
href="http://www.codeplex.com/htmlagilitypack">HtmlAgilityPack</a>.
=======================================
--- /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeSelection.cs Wed Nov 11
17:13:55 2009
+++ /trunk/Fizzler.Systems.HtmlAgilityPack/HtmlNodeSelection.cs Tue Feb 2
14:28:39 2010
@@ -1,10 +1,14 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using HtmlAgilityPack;
-
-namespace Fizzler.Systems.HtmlAgilityPack
-{
+namespace Fizzler.Systems.HtmlAgilityPack
+{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using global::HtmlAgilityPack;
+
+ #endregion
+
/// <summary>
/// Selector API for <see cref="HtmlNode"/>.
/// </summary>
=======================================
--- /trunk/Fizzler.Tests/AttributeSelectors.cs Fri May 1 09:55:06 2009
+++ /trunk/Fizzler.Tests/AttributeSelectors.cs Tue Feb 2 14:28:39 2010
@@ -1,10 +1,8 @@
-using System.Collections.Generic;
-using HtmlAgilityPack;
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- [TestFixture]
+ using NUnit.Framework;
+
+ [TestFixture]
public class AttributeSelectors : SelectorBaseTest
{
[Test]
=======================================
--- /trunk/Fizzler.Tests/ChildAndAdjacentSelectors.cs Tue May 12 03:57:47
2009
+++ /trunk/Fizzler.Tests/ChildAndAdjacentSelectors.cs Tue Feb 2 14:28:39
2010
@@ -1,8 +1,8 @@
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- [TestFixture]
+ using NUnit.Framework;
+
+ [TestFixture]
public class ChildAndAdjacentSelectors : SelectorBaseTest
{
[Test]
=======================================
--- /trunk/Fizzler.Tests/ClassSelector.cs Mon Apr 27 14:56:01 2009
+++ /trunk/Fizzler.Tests/ClassSelector.cs Tue Feb 2 14:28:39 2010
@@ -1,8 +1,8 @@
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- [TestFixture]
+ using NUnit.Framework;
+
+ [TestFixture]
public class ClassSelector : SelectorBaseTest
{
[Test]
=======================================
--- /trunk/Fizzler.Tests/ElementSelector.cs Wed Sep 30 23:20:04 2009
+++ /trunk/Fizzler.Tests/ElementSelector.cs Tue Feb 2 14:28:39 2010
@@ -1,9 +1,9 @@
-using System;
-using NUnit.Framework;
-
-namespace Fizzler.Tests
-{
- [TestFixture]
+namespace Fizzler.Tests
+{
+ using System;
+ using NUnit.Framework;
+
+ [TestFixture]
public class ElementSelector : SelectorBaseTest
{
[Test]
=======================================
--- /trunk/Fizzler.Tests/HumanReadableSelectorGeneratorTests.cs Fri May 15
07:36:58 2009
+++ /trunk/Fizzler.Tests/HumanReadableSelectorGeneratorTests.cs Tue Feb 2
14:28:39 2010
@@ -1,9 +1,9 @@
-using System;
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- [TestFixture]
+ using System;
+ using NUnit.Framework;
+
+ [TestFixture]
public class HumanReadableSelectorGeneratorTests
{
public class TestHumanReadableSelectorGenerator :
HumanReadableSelectorGenerator
=======================================
--- /trunk/Fizzler.Tests/IDSelector.cs Mon Apr 27 14:56:01 2009
+++ /trunk/Fizzler.Tests/IDSelector.cs Tue Feb 2 14:28:39 2010
@@ -1,8 +1,8 @@
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- [TestFixture]
+ using NUnit.Framework;
+
+ [TestFixture]
public class IDSelector : SelectorBaseTest
{
[Test]
=======================================
--- /trunk/Fizzler.Tests/MultipleSelectors.cs Mon Apr 27 14:56:01 2009
+++ /trunk/Fizzler.Tests/MultipleSelectors.cs Tue Feb 2 14:28:39 2010
@@ -1,8 +1,8 @@
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- [TestFixture]
+ using NUnit.Framework;
+
+ [TestFixture]
public class MultipleSelectors : SelectorBaseTest
{
[Test]
=======================================
--- /trunk/Fizzler.Tests/NamespacePrefixTests.cs Tue Jun 2 10:20:51 2009
+++ /trunk/Fizzler.Tests/NamespacePrefixTests.cs Tue Feb 2 14:28:39 2010
@@ -1,8 +1,8 @@
-using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
-
namespace Fizzler.Tests
{
+ using NUnit.Framework;
+ using NUnit.Framework.SyntaxHelpers;
+
[TestFixture]
public class NamespacePrefixTests
{
=======================================
--- /trunk/Fizzler.Tests/NthChild.cs Mon Apr 27 14:56:01 2009
+++ /trunk/Fizzler.Tests/NthChild.cs Tue Feb 2 14:28:39 2010
@@ -1,8 +1,8 @@
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- [TestFixture]
+ using NUnit.Framework;
+
+ [TestFixture]
public class NthChild : SelectorBaseTest
{
/// <summary>
=======================================
--- /trunk/Fizzler.Tests/ParserTests.cs Tue Jun 2 10:20:51 2009
+++ /trunk/Fizzler.Tests/ParserTests.cs Tue Feb 2 14:28:39 2010
@@ -1,10 +1,14 @@
-using System;
-using System.Collections.Generic;
-using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
-
namespace Fizzler.Tests
{
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using NUnit.Framework;
+ using NUnit.Framework.SyntaxHelpers;
+
+ #endregion
+
[TestFixture]
public class ParserTests
{
=======================================
--- /trunk/Fizzler.Tests/PsuedoSelectors.cs Wed Sep 30 23:20:04 2009
+++ /trunk/Fizzler.Tests/PsuedoSelectors.cs Tue Feb 2 14:28:39 2010
@@ -1,7 +1,7 @@
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
+ using NUnit.Framework;
+
[TestFixture]
public class PsuedoSelectors : SelectorBaseTest
{
=======================================
--- /trunk/Fizzler.Tests/ReaderTests.cs Mon May 18 04:04:15 2009
+++ /trunk/Fizzler.Tests/ReaderTests.cs Tue Feb 2 14:28:39 2010
@@ -1,10 +1,14 @@
-using System;
-using System.Collections;
-using System.Collections.Generic;
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
+ #region Imports
+
+ using System;
+ using System.Collections;
+ using System.Collections.Generic;
+ using NUnit.Framework;
+
+ #endregion
+
[TestFixture]
public class ReaderTests
{
=======================================
--- /trunk/Fizzler.Tests/SelectorBaseTest.cs Wed Sep 30 23:20:04 2009
+++ /trunk/Fizzler.Tests/SelectorBaseTest.cs Tue Feb 2 14:28:39 2010
@@ -1,15 +1,19 @@
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.IO;
-using System.Linq;
-using System.Reflection;
-using Fizzler.Systems.HtmlAgilityPack;
-using HtmlAgilityPack;
-
namespace Fizzler.Tests
{
- public abstract class SelectorBaseTest
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Collections.ObjectModel;
+ using System.IO;
+ using System.Linq;
+ using System.Reflection;
+ using Fizzler.Systems.HtmlAgilityPack;
+ using HtmlAgilityPack;
+
+ #endregion
+
+ public abstract class SelectorBaseTest
{
protected SelectorBaseTest()
{
=======================================
--- /trunk/Fizzler.Tests/SelectorGeneratorTeeTests.cs Tue Jun 2 10:20:51
2009
+++ /trunk/Fizzler.Tests/SelectorGeneratorTeeTests.cs Tue Feb 2 14:28:39
2010
@@ -1,12 +1,16 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Reflection;
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
- /// <summary>
+ #region Imports
+
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Reflection;
+ using NUnit.Framework;
+
+ #endregion
+
+ /// <summary>
/// Ensure that all actions on SelectorGeneratorTee are passed
/// to the internal Primary and Secondary SelectorGenerators.
/// </summary>
=======================================
--- /trunk/Fizzler.Tests/TokenTests.cs Wed Jun 3 13:26:53 2009
+++ /trunk/Fizzler.Tests/TokenTests.cs Tue Feb 2 14:28:39 2010
@@ -1,9 +1,13 @@
-using System;
-using NUnit.Framework;
-using NUnit.Framework.SyntaxHelpers;
-
-namespace Fizzler.Tests
-{
+namespace Fizzler.Tests
+{
+ #region Imports
+
+ using System;
+ using NUnit.Framework;
+ using NUnit.Framework.SyntaxHelpers;
+
+ #endregion
+
[TestFixture]
public class TokenTests
{
=======================================
--- /trunk/Fizzler.Tests/TokenerTests.cs Wed Jun 3 13:26:53 2009
+++ /trunk/Fizzler.Tests/TokenerTests.cs Tue Feb 2 14:28:39 2010
@@ -1,10 +1,14 @@
-using System;
-using System.IO;
-using System.Linq;
-using NUnit.Framework;
-
namespace Fizzler.Tests
{
+ #region Imports
+
+ using System;
+ using System.IO;
+ using System.Linq;
+ using NUnit.Framework;
+
+ #endregion
+
[TestFixture]
public class TokenerTests
{
Reply all
Reply to author
Forward
0 new messages