All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.server.pagination.domain.test.AppPagesFixture.mustache Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package {{packageName}}.shared.pagination.domain;

import java.util.List;
import {{packageName}}.shared.pagination.domain.{{baseName}}Page.{{baseName}}PageBuilder;

public final class {{baseName}}PagesFixture {

  private {{baseName}}PagesFixture() {}

  public static {{baseName}}Page page() {
    return pageBuilder().build();
  }

  public static {{baseName}}PageBuilder pageBuilder() {
    return {{baseName}}Page.builder(List.of("test")).currentPage(2).pageSize(10).totalElementsCount(21);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy