Hello, I’m now trying to write some plugins and JUnit test cases for lucene trunk. but i’ve met some compile error in test-compile because of the test case contains classes in other package. i think i must not change classpath of compile-test, it cases a dependency problem.
My plugin is a kind of Similarity class using payload value. Now I’d like to write test case which check search result score, but PayloadScoreQuery is in query package, DelimitedPayloadTokenFilter and some tokenizer classes are in analyzer package. so I understood it makes compile error, but i could not figure out how to correct this error. I have some options, but it seems to me that they are but ideas… - test in solr. - put the test case in queries package, and write Analyzer and TokenFilter as innner-class. Is there any way to achieve this ? Yoshida, Takumi
