Package ns.foundation

Examples of ns.foundation.NSTimestamp


  }

  @SuppressWarnings("deprecation")
  public void testSetHours() {
    try {
      new NSTimestamp().setHours(1);
      fail("SetHours should throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
    } catch (IllegalStateException e) {
    }
  }
View Full Code Here


  }

  @SuppressWarnings("deprecation")
  public void testSetMinutes() {
    try {
      new NSTimestamp().setMinutes(1);
      fail("SetMinutes should throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
    } catch (IllegalStateException e) {
    }
  }
View Full Code Here

  }

  @SuppressWarnings("deprecation")
  public void testSetSeconds() {
    try {
      new NSTimestamp().setSeconds(1);
      fail("SetSeconds should throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
    } catch (IllegalStateException e) {
    }
  }
View Full Code Here

  }

  @SuppressWarnings("deprecation")
  public void testSetTime() {
    try {
      new NSTimestamp().setTime(new Date().getTime());
      fail("SetTime should throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
    } catch (IllegalStateException e) {
    }
  }
View Full Code Here

  }

  @SuppressWarnings("deprecation")
  public void testSetNanos() {
    try {
      new NSTimestamp().setNanos(999999999);
      fail("SetNanos should throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
    } catch (IllegalStateException e) {
    }
}
View Full Code Here

    } catch (IllegalStateException e) {
    }
}

  public void testDistantFuture() {
    assertTrue(NSTimestamp.DistantFuture.after(new NSTimestamp()));
  }
View Full Code Here

  public void testDistantFuture() {
    assertTrue(NSTimestamp.DistantFuture.after(new NSTimestamp()));
  }
 
  public void testDistantPast() {
    assertTrue(NSTimestamp.DistantPast.before(new NSTimestamp()));
  }
View Full Code Here

TOP

Related Classes of ns.foundation.NSTimestamp

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.