Package org.assertj.core.api

Source Code of org.assertj.core.api.Assertions_tuple_Test

package org.assertj.core.api;

import static org.assertj.core.api.Assertions.assertThat;

import org.assertj.core.groups.Tuple;
import org.junit.Test;

public class Assertions_tuple_Test {

  @Test
  public void should_create_tuple() {
    Tuple tuple = Assertions.tuple("Yoda", 800, "Jedi");
    assertThat(tuple).isEqualTo(new Tuple("Yoda", 800, "Jedi"));
  }

}
TOP

Related Classes of org.assertj.core.api.Assertions_tuple_Test

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.