Package org.jtester.hamcrest.matcher.calendar

Examples of org.jtester.hamcrest.matcher.calendar.DateParterMatcher


  public IDateAssert<T> isSecond(String second) {
    return this.assertThat(second, DateFieldType.SECOND);
  }

  private IDateAssert<T> assertThat(int value, DateFieldType type) {
    DateParterMatcher matcher = new DateParterMatcher(value, type);
    return this.assertThat(matcher);
  }
View Full Code Here


    DateParterMatcher matcher = new DateParterMatcher(value, type);
    return this.assertThat(matcher);
  }

  private IDateAssert<T> assertThat(String value, DateFieldType type) {
    DateParterMatcher matcher = new DateParterMatcher(Integer.valueOf(value), type);
    return this.assertThat(matcher);
  }
View Full Code Here

TOP

Related Classes of org.jtester.hamcrest.matcher.calendar.DateParterMatcher

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.