Package com.google.common.truth.delegation

Examples of com.google.common.truth.delegation.Foo


    EXPECT.that(x).isIn(Range.open(3, 5));
    EXPECT.that(x).isEqualTo(4);
  }

  @Test public void customTypeCompares() {
    assert_().about(FOO).that(new Foo(5)).matches(new Foo(2 + 3));
  }
View Full Code Here

TOP

Related Classes of com.google.common.truth.delegation.Foo

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.