1 package org.columba.mail.gui.table.model; 19 20 import junit.framework.TestCase; 21 22 23 27 public class TableModelThreadedViewTest extends TestCase { 28 29 public static String [] columns = {"Subject", "From", "Date"}; 30 31 32 public void testParseReferences() { 33 String references = "<ab@ab> <a@b>"; 34 35 String [] parsed = TableModelThreadedView.parseReferences(references); 36 37 assertEquals("<ab@ab>", parsed[0]); 38 assertEquals("<a@b>", parsed[1]); 39 } 40 41 } 42 | Popular Tags |