[longomatch] Fix namespaces and add more empty tests



commit 64b202e5ea38f9444dc896de85109919aa018e97
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Thu Mar 5 14:00:02 2015 +0100

    Fix namespaces and add more empty tests

 Tests/Core/Store/Drawables/TestAngle.cs         |    2 +-
 Tests/Core/Store/Drawables/TestCircle.cs        |   29 +++++++++++++++++++++++
 Tests/Core/Store/Drawables/TestCounter.cs       |   29 +++++++++++++++++++++++
 Tests/Core/Store/Drawables/TestCross.cs         |    2 +-
 Tests/Core/Store/Drawables/TestDrawable.cs      |    2 +-
 Tests/Core/Store/Drawables/TestEllipse.cs       |    2 +-
 Tests/Core/Store/Drawables/TestLine.cs          |    2 +-
 Tests/Core/Store/Drawables/TestMultipoints.cs   |    2 +-
 Tests/Core/Store/Drawables/TestQuadrilateral.cs |    2 +-
 Tests/Core/Store/Drawables/TestRectangle.cs     |    2 +-
 Tests/Core/Store/Drawables/TestText.cs          |    2 +-
 Tests/Makefile.am                               |    2 +
 Tests/Tests.csproj                              |    2 +
 13 files changed, 71 insertions(+), 9 deletions(-)
---
diff --git a/Tests/Core/Store/Drawables/TestAngle.cs b/Tests/Core/Store/Drawables/TestAngle.cs
index f140b91..3599849 100644
--- a/Tests/Core/Store/Drawables/TestAngle.cs
+++ b/Tests/Core/Store/Drawables/TestAngle.cs
@@ -20,7 +20,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Common;
 using LongoMatch.Core.Store.Drawables;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestAngle
diff --git a/Tests/Core/Store/Drawables/TestCircle.cs b/Tests/Core/Store/Drawables/TestCircle.cs
new file mode 100644
index 0000000..5e60713
--- /dev/null
+++ b/Tests/Core/Store/Drawables/TestCircle.cs
@@ -0,0 +1,29 @@
+//
+//  Copyright (C) 2015 Andoni Morales Alastruey
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License as published by
+//  the Free Software Foundation; either version 2 of the License, or
+//  (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+//
+using NUnit.Framework;
+using System;
+
+namespace Tests.Core.Store.Drawables
+{
+       [TestFixture ()]
+       [Ignore ("Not implemented")]
+       public class TestCircle
+       {
+       }
+}
+
diff --git a/Tests/Core/Store/Drawables/TestCounter.cs b/Tests/Core/Store/Drawables/TestCounter.cs
new file mode 100644
index 0000000..60569fc
--- /dev/null
+++ b/Tests/Core/Store/Drawables/TestCounter.cs
@@ -0,0 +1,29 @@
+//
+//  Copyright (C) 2015 Andoni Morales Alastruey
+//
+//  This program is free software; you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License as published by
+//  the Free Software Foundation; either version 2 of the License, or
+//  (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, write to the Free Software
+//  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+//
+using NUnit.Framework;
+using System;
+
+namespace Tests.Core.Store.Drawables
+{
+       [TestFixture ()]
+       [Ignore ("Not implemented")]
+       public class TestCounter
+       {
+       }
+}
+
diff --git a/Tests/Core/Store/Drawables/TestCross.cs b/Tests/Core/Store/Drawables/TestCross.cs
index d47e1d6..7992e37 100644
--- a/Tests/Core/Store/Drawables/TestCross.cs
+++ b/Tests/Core/Store/Drawables/TestCross.cs
@@ -20,7 +20,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Common;
 using LongoMatch.Core.Store.Drawables;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestCross
diff --git a/Tests/Core/Store/Drawables/TestDrawable.cs b/Tests/Core/Store/Drawables/TestDrawable.cs
index a7d8a56..c770a5a 100644
--- a/Tests/Core/Store/Drawables/TestDrawable.cs
+++ b/Tests/Core/Store/Drawables/TestDrawable.cs
@@ -20,7 +20,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Store.Drawables;
 using LongoMatch.Core.Common;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        public class DrawableImp: Drawable
        {
diff --git a/Tests/Core/Store/Drawables/TestEllipse.cs b/Tests/Core/Store/Drawables/TestEllipse.cs
index 1a1dc1b..959d671 100644
--- a/Tests/Core/Store/Drawables/TestEllipse.cs
+++ b/Tests/Core/Store/Drawables/TestEllipse.cs
@@ -20,7 +20,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Common;
 using LongoMatch.Core.Store.Drawables;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestEllipse
diff --git a/Tests/Core/Store/Drawables/TestLine.cs b/Tests/Core/Store/Drawables/TestLine.cs
index 77627f6..bbebe7e 100644
--- a/Tests/Core/Store/Drawables/TestLine.cs
+++ b/Tests/Core/Store/Drawables/TestLine.cs
@@ -20,7 +20,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Common;
 using LongoMatch.Core.Store.Drawables;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestLine
diff --git a/Tests/Core/Store/Drawables/TestMultipoints.cs b/Tests/Core/Store/Drawables/TestMultipoints.cs
index fe2a33b..8b6ebf3 100644
--- a/Tests/Core/Store/Drawables/TestMultipoints.cs
+++ b/Tests/Core/Store/Drawables/TestMultipoints.cs
@@ -21,7 +21,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Common;
 using LongoMatch.Core.Store.Drawables;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestMultipoints
diff --git a/Tests/Core/Store/Drawables/TestQuadrilateral.cs b/Tests/Core/Store/Drawables/TestQuadrilateral.cs
index 9e75de9..cd9d5f5 100644
--- a/Tests/Core/Store/Drawables/TestQuadrilateral.cs
+++ b/Tests/Core/Store/Drawables/TestQuadrilateral.cs
@@ -20,7 +20,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Store.Drawables;
 using LongoMatch.Core.Common;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestQuadrilateral
diff --git a/Tests/Core/Store/Drawables/TestRectangle.cs b/Tests/Core/Store/Drawables/TestRectangle.cs
index 697a24f..a267b14 100644
--- a/Tests/Core/Store/Drawables/TestRectangle.cs
+++ b/Tests/Core/Store/Drawables/TestRectangle.cs
@@ -20,7 +20,7 @@ using NUnit.Framework;
 using LongoMatch.Core.Store.Drawables;
 using LongoMatch.Core.Common;
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestRectangle
diff --git a/Tests/Core/Store/Drawables/TestText.cs b/Tests/Core/Store/Drawables/TestText.cs
index 399274f..6eaf1c1 100644
--- a/Tests/Core/Store/Drawables/TestText.cs
+++ b/Tests/Core/Store/Drawables/TestText.cs
@@ -22,7 +22,7 @@ using LongoMatch.Core.Common;
 using Text = LongoMatch.Core.Store.Drawables.Text;
 
 
-namespace Tests.Core.Drawables
+namespace Tests.Core.Store.Drawables
 {
        [TestFixture()]
        public class TestText
diff --git a/Tests/Makefile.am b/Tests/Makefile.am
index 3834725..c815a59 100644
--- a/Tests/Makefile.am
+++ b/Tests/Makefile.am
@@ -6,6 +6,8 @@ LINK = $(REF_DEP_TESTS)
 SOURCES = Core/Common/TestColor.cs \
        Core/Common/TestImage.cs \
        Core/Store/Drawables/TestAngle.cs \
+       Core/Store/Drawables/TestCircle.cs \
+       Core/Store/Drawables/TestCounter.cs \
        Core/Store/Drawables/TestCross.cs \
        Core/Store/Drawables/TestDrawable.cs \
        Core/Store/Drawables/TestEllipse.cs \
diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj
index 5843200..d39ca15 100644
--- a/Tests/Tests.csproj
+++ b/Tests/Tests.csproj
@@ -69,6 +69,8 @@
     <Compile Include="Core\Store\TestProjectDescription.cs" />
     <Compile Include="Core\Store\TestTimer.cs" />
     <Compile Include="Core\Store\TestTag.cs" />
+    <Compile Include="Core\Store\Drawables\TestCircle.cs" />
+    <Compile Include="Core\Store\Drawables\TestCounter.cs" />
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="..\LongoMatch.Core\LongoMatch.Core.csproj">


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]