import java.io.*;
import junit.framework.TestCase;

/**
 *  This is a minimal test class for SecondsToHours.
 *
 *  @author R.Grove
 *  @version 1.0
 */
public class SecondsToHours_Test extends TestCase {

  /**
   *  Executes the main method, but no actual test is performed.
   */
  public void testMain() {
    SecondsToHours sth = new SecondsToHours();
    System.setIn(new ByteArrayInputStream("1\n".getBytes()));    
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    System.setOut(new PrintStream(output));
    sth.main(new String[] {});  
  }
}