I’m working on writing distribution tests for the ordered logistic distribution, but all of the other tests have scalar input parameters, for example, normal_test.hpp:
What do the existing tests look like? And what about tests for things like multivariate normal, or the Dirichlet, both of which involve vector-only parameters.
There were some that Rob Trangucci wrote; I think they were vectorized.
We hadn’t been able to write a generic framework for these pre C++11. I think we can actually start making a lot of progress now, but that may not help you test things in the short term. I’d start by writing tests manually. And then trying to derive requirements from that.