I'm not sure "scalar testing" is the correct term for it but I mean tests that aren't boolean "fail or succeed". The problem I'm working on is a chromatic tuner for android:
http://code.google.com/p/androidtuner/
And I want to test the algorithm by running a few wav files and processing the resulting pitch graph. The goal is to define the scalar test result as a normalized x-minus-y-squared-sum where x is the detected pitch and y is the expected pitch. So a perfect test run would be 0 but more realistically I'd like to tweak the algorithm and see if/how it improved on all the test cases.
Generally speaking - can a unit test result in a number and not a boolean? Does the android testing framework allow it? How should I integrate whichever solution with Eclipse?
My current idea is to just circumvent everything and use adb to fetch files generated after running each test. Though that's not too awesome.