Package org.assertj.core.groups

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


  }
 
  @Test
  public void add_an_element_to_a_tuple() {
  Tuple tuple = new Tuple("Yoda", 800);
  tuple.addData("Jedi");
  assertThat(tuple).isEqualTo(new Tuple("Yoda", 800, "Jedi"));
  }
 
  @SuppressWarnings("unchecked")
  @Test
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.