Shad Storhaug

Results 300 comments of Shad Storhaug

Closing, as this appears to be resolved.

@vvdb-architecture Thanks. So that leaves the question - how do we enforce the [TokenStream workflow contract](https://lucenenet.apache.org/docs/4.8.0-beta00016/api/core/Lucene.Net.Analysis.TokenStream.html) in .NET? The exception is meant to be a guide to help at development...

After some research, I have determined the following: 1. `Dispose()` doesn't actually throw anything. The failure happens when attempting to set up the next field using the same `TokenStream` instance....

A few things of things of note. ## Default Directory The default directory is dependent upon OS. ![image](https://user-images.githubusercontent.com/1538288/143163004-e7ac080a-6ed3-4a09-8159-084dbdbb61e7.png) That is, if you call `FSDirectory.Open()` to get the instance of a...

I would like to see some of the JUnit 4 features make it over to .NET. There is a [Rule framework](https://carlosbecker.com/posts/junit-rules/) that makes setting up test sequences and global context...

Not sure if this was a design choice or a bug, but for this simple scenario, `InitMe` is called twice. I would expect only one call here because there is...

I found another issue: When the derived type is in another assembly that is referenced in the same project, the `FullyQualifiedTestClassName` doesn't include the name of the other assembly. So,...

@KitoCoding Thanks. That is a huge problem for me because my test fixture sets the culture during initialization of the class, which obviously needs to be on the same thread...

@paulirwin - Thanks for your help on this. This issue is certainly a good place to start after being inactive for awhile. But do note we have set up a...

Just an update on our NUnit integration. We added the repeatable randomized testing functionality in #547, so now it is much easier to debug random tests. This was done primarily...