svoid test_AutoClassifier1() { AutoClassifier1 c = new(S); c.noQ = true; c.start(); pnl("feature", c.getFeatures("hello")); assertEmpty(c.confidentlyPredictedLabelsForObject("hello")); c.learn(ll("hello", "abcde", "xxxxx"), "5 chars"); c.learn(ll("bla", "abcd", "aa"), "not 5 chars"); assertEqualsICVerbose("5 chars", joinWithComma(c.confidentlyPredictedLabelsForObject("world"))); assertEqualsICVerbose("not 5 chars", joinWithComma(c.confidentlyPredictedLabelsForObject("......"))); }