~ubuntu-branches/ubuntu/precise/commons-csv/precise

« back to all changes in this revision

Viewing changes to src/test/org/apache/commons/csv/CSVPrinterTest.java

  • Committer: Bazaar Package Importer
  • Author(s): Jan-Pascal van Best
  • Date: 2008-09-10 20:58:00 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20080910205800-ohoq6075nafu8n2b
Tags: upstream-0.1-SNAPSHOT+svn678580
ImportĀ upstreamĀ versionĀ 0.1-SNAPSHOT+svn678580

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 */
27
27
public class CSVPrinterTest extends TestCase {
28
28
  
29
 
  String lineSeparator = null;
30
 
  
31
 
  /**
32
 
   * Constructor for CSVPrinterTest.
33
 
   */
34
 
  public CSVPrinterTest(String name) {
35
 
    super(name);
36
 
    this.lineSeparator = System.getProperty("line.separator");
37
 
  }
38
 
 
39
 
  public static Test suite() {
40
 
    return new TestSuite(CSVPrinterTest.class);
41
 
  }
 
29
  String lineSeparator = System.getProperty("line.separator");
42
30
 
43
31
  public void testPrinter1() {
44
32
    StringWriter sw = new StringWriter();