Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testTableBuilding (0.31 sec)

  1. platforms/documentation/docs/src/samples/templates/structuring-software-projects/user-feature/table/src/test/java/com/example/myproduct/user/table/TableBuilderTest.java

    import org.junit.jupiter.api.Test;
    
    import java.util.Arrays;
    import java.util.List;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    public class TableBuilderTest {
        @Test
        public void testTableBuilding() {
            List<MyProductRelease> testData = Arrays.asList(
                    new MyProductRelease("1.0", "https://example.com/release1"),
                    new MyProductRelease("2.0", "https://example.com/release2"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
Back to top