Package org.assertj.core.groups

Examples of org.assertj.core.groups.Tuple.toArray()


 
  @SuppressWarnings("unchecked")
  @Test
  public void convert_tuple_to_an_array() {
  Tuple tuple = new Tuple("Yoda", 800, "Jedi");
  assertThat(tuple.toArray()).isEqualTo(array("Yoda", 800, "Jedi"));
  }
 
  @Test
  public void tuple_representation() {
  Tuple tuple = new Tuple("Yoda", 800, "Jedi");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.