This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit a7bbc0bea45425709864b5339ce70267ebc6da72 Author: Ron Clabo <[email protected]> AuthorDate: Fri Feb 19 10:08:06 2021 -0500 Removed obsolete comment, and [Test] override methods no longer needed. --- .../Memory/TestFSTOrdPostingsFormat.cs | 62 ---------------------- .../SimpleText/TestSimpleTextStoredFieldsFormat.cs | 3 -- 2 files changed, 65 deletions(-) diff --git a/src/Lucene.Net.Tests.Codecs/Memory/TestFSTOrdPostingsFormat.cs b/src/Lucene.Net.Tests.Codecs/Memory/TestFSTOrdPostingsFormat.cs index 3523216..3fef554 100644 --- a/src/Lucene.Net.Tests.Codecs/Memory/TestFSTOrdPostingsFormat.cs +++ b/src/Lucene.Net.Tests.Codecs/Memory/TestFSTOrdPostingsFormat.cs @@ -33,67 +33,5 @@ namespace Lucene.Net.Codecs.Memory return codec; } - - #region BasePostingsFormatTestCase - // LUCENENET NOTE: Tests in an abstract base class are not pulled into the correct - // context in Visual Studio. This fixes that with the minimum amount of code necessary - // to run them in the correct context without duplicating all of the tests. - - [Test] - public override void TestDocsOnly() - { - base.TestDocsOnly(); - } - - [Test] - public override void TestDocsAndFreqs() - { - base.TestDocsAndFreqs(); - } - - [Test] - public override void TestDocsAndFreqsAndPositions() - { - base.TestDocsAndFreqsAndPositions(); - } - - [Test] - public override void TestDocsAndFreqsAndPositionsAndPayloads() - { - base.TestDocsAndFreqsAndPositionsAndPayloads(); - } - - [Test] - public override void TestDocsAndFreqsAndPositionsAndOffsets() - { - base.TestDocsAndFreqsAndPositionsAndOffsets(); - } - - [Test] - public override void TestDocsAndFreqsAndPositionsAndOffsetsAndPayloads() - { - base.TestDocsAndFreqsAndPositionsAndOffsetsAndPayloads(); - } - - [Test] - public override void TestRandom() - { - base.TestRandom(); - } - - #endregion - - #region BaseIndexFileFormatTestCase - // LUCENENET NOTE: Tests in an abstract base class are not pulled into the correct - // context in Visual Studio. This fixes that with the minimum amount of code necessary - // to run them in the correct context without duplicating all of the tests. - - [Test] - public override void TestMergeStability() - { - base.TestMergeStability(); - } - - #endregion } } \ No newline at end of file diff --git a/src/Lucene.Net.Tests.Codecs/SimpleText/TestSimpleTextStoredFieldsFormat.cs b/src/Lucene.Net.Tests.Codecs/SimpleText/TestSimpleTextStoredFieldsFormat.cs index 0c1f50c..5f44527 100644 --- a/src/Lucene.Net.Tests.Codecs/SimpleText/TestSimpleTextStoredFieldsFormat.cs +++ b/src/Lucene.Net.Tests.Codecs/SimpleText/TestSimpleTextStoredFieldsFormat.cs @@ -30,9 +30,6 @@ namespace Lucene.Net.Codecs.SimpleText } - // LUCENENET NOTE: Tests in an abstract base class are not pulled into the correct - // context in Visual Studio. This fixes that with the minimum amount of code necessary - // to run them in the correct context without duplicating all of the tests. [Deadlock][Timeout(600000)] public override void TestConcurrentReads() {
