Package org.assertj.core.data

Examples of org.assertj.core.data.Index


    Index.atIndex(-1);
  }

  @Test
  public void should_create_new_Index() {
    Index index = Index.atIndex(8);
    assertEquals(8, index.value);
  }
View Full Code Here

TOP

Related Classes of org.assertj.core.data.Index

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.