5 Okay so I am on vacation this week, so I will relax the best I can because I
6 have an upcoming brain MRI... which can end up being different outcomes. On
7 the otherwise, I am finding that in multiple branches I have test related
8 changes which I merged some into `trunk`. What I want to do now is have it so
9 that hyper-parameters can be inherited from super-classes. Of course this means
10 that the test handling stuff is going to have to look a at a class and then
11 look at a dependency of that class to figure out if there are any tests. So
12 this will be somewhat recursive hunting for all of the potential various
13 hyper-parameters so that it need not be actually duplicated across everything
14 at once. I think also for expected parameters I should look at interfaces for
15 every single class as well, although in CLDC you cannot get the interfaces from
16 a class... so I am effectively going to have to make a shelf interface around
17 it but that should not be difficult at all.
21 Okay so now TAC will look in interfaces for results, which this will be very
22 nice for SummerCoat related tests since I only want to specify targets once.
23 Now I need to handle multi-parameters and hyper-parameters for the actual test
24 calling code, but probably after eating some food. If I do it this way I should
25 then be able to avoid massive duplication of all the various targets because
26 I really do not want to specify them dozens of times for the dozens of tests
27 I will make for the compiler. This work will definitely save me time in the
32 Okay so that is very nice and simple, now what I need are optional dependencies
33 except for test and testFixtures, so that all of the other testable modules
34 can be just be brought in rather than duplicating test classes all over the