// Data structure with unit test
class SimpleTime1c {

   // instance members
   int hour, minute;

   // static unit test
   public static void main (String [] args) {

      SimpleTime1c t = new SimpleTime1c ();

   }
  
}