jtulach@378: package test; jtulach@8: jtulach@378: import api.Covariance; jtulach@378: jtulach@378: public class CovarianceTest { jtulach@378: // BEGIN: variance.covariance.test jtulach@378: public static void main(String[] args) { jtulach@378: Number n = Covariance.max(10, 20); jtulach@378: System.err.println("value: " + n + " type: " + n.getClass()); jtulach@378: assert n.intValue() == 20 : "The max should be 20, but was: " + n; jtulach@8: } jtulach@378: // END: variance.covariance.test jtulach@8: }