All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.cotta.test.assertion.CharAssert Maven / Gradle / Ivy

The newest version!
package net.sf.cotta.test.assertion;

public class CharAssert extends BaseAssert {
  public CharAssert(Character value) {
    super(value);
  }

  public CharAssert eq(int expected) {
    super.eq((char) expected);
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy