blob: e988299a9c135f4fb94d0145d7f78e7e909b4559 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2000, 2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.core.tests.internal.indexing;
import java.io.*;
public class StandAloneTestEnvironment implements TestEnvironment {
protected final static String sep = File.separator;
protected final static String driveLetter = "c:";
protected final static String directoryName = driveLetter + sep + "tests" + sep;
protected final static String fileName = directoryName + "test.dat";
private PrintWriter out;
public StandAloneTestEnvironment() {
// out = new PrintWriter(System.out, true);
try {
out = new PrintWriter(new FileWriter(directoryName + sep + "test.txt"), true);
} catch (IOException e) {
}
}
public String getFileName() {
return fileName;
}
public void print(String s) {
if (out != null) out.print(s);
}
public void print(int n, int width) {
StringBuffer b = new StringBuffer(width);
String s = Integer.toString(n);
if (s.length() > width) {
for (int i = 0; i < width; i++) b.append("#");
} else {
for (int i = 0; i < width - s.length(); i++) b.append(" ");
b.append(s);
}
print(b.toString());
}
public void println(String s) {
if (out != null) out.println(s);
}
public void printHeading(String s) {
if (out != null) {
out.println();
out.println(s);
}
}
}