You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2016/10/11 18:35:20 UTC

[35/47] lucenenet git commit: Made Core.Util.BaseSortTestCase test methods virtual.

Made Core.Util.BaseSortTestCase test methods virtual.


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/964fca63
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/964fca63
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/964fca63

Branch: refs/heads/master
Commit: 964fca6318ab4ed0806d608b50f2f6cf6edcd968
Parents: bd64873
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Tue Oct 11 01:02:26 2016 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Wed Oct 12 01:10:54 2016 +0700

----------------------------------------------------------------------
 .../core/Util/BaseSortTestCase.cs                 | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/964fca63/src/Lucene.Net.Tests/core/Util/BaseSortTestCase.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests/core/Util/BaseSortTestCase.cs b/src/Lucene.Net.Tests/core/Util/BaseSortTestCase.cs
index 2936715..dd31909 100644
--- a/src/Lucene.Net.Tests/core/Util/BaseSortTestCase.cs
+++ b/src/Lucene.Net.Tests/core/Util/BaseSortTestCase.cs
@@ -154,55 +154,55 @@ namespace Lucene.Net.Util
         }
 
         [Test]
-        public void TestEmpty()
+        public virtual void TestEmpty()
         {
             SortTest(new Entry[0]);
         }
 
         [Test]
-        public void TestOne()
+        public virtual void TestOne()
         {
             DoTest(RandomStrategy, 1);
         }
 
         [Test]
-        public void TestTwo()
+        public virtual void TestTwo()
         {
             DoTest(RandomStrategy, 2);
         }
 
         [Test]
-        public void TestRandom()
+        public virtual void TestRandom()
         {
             DoTest(RandomStrategy);
         }
 
         [Test]
-        public void TestRandomLowCardinality()
+        public virtual void TestRandomLowCardinality()
         {
             DoTest(RandomLowCardinalityStrategy, 2);
         }
 
         [Test]
-        public void TestAscending()
+        public virtual void TestAscending()
         {
             DoTest(AscendingStrategy, 2);
         }
 
         [Test]
-        public void TestAscendingSequences()
+        public virtual void TestAscendingSequences()
         {
             DoTest(AscendingSequencesStrategy, 2);
         }
 
         [Test]
-        public void TestDescending()
+        public virtual void TestDescending()
         {
             DoTest(DescendingStrategy, 2);
         }
 
         [Test]
-        public void TestStrictlyDescendingStrategy()
+        public virtual void TestStrictlyDescendingStrategy()
         {
             DoTest(StrictlyDescendingStrategy, 2);
         }