MockGebietListe ergänzt

This commit is contained in:
Kevin Maier 2022-12-09 15:04:06 +01:00
parent c7defb02a6
commit ea7a52dcb3

View File

@ -1,4 +1,14 @@
public class MockGebietListe
{
import java.util.ArrayList;
import java.util.List;
public class MockGebietListe implements ListenInterface
{
private ArrayList<Gebiet> gebiete = new ArrayList<>();
public void GebietsListe(List<Gebiet> gebiete){ }
public Gebiet getGebietMinDurchschnittsEinkommen() {return null;}
public Gebiet getGebietMaxAnzahlEinwohner() {return null;}
public int getAnzahlGesamt() {return 0;}
public int getAnzahlUnvollständig() {return 0;}
public List<Gebiet> getGebieteNachNamen(String namensanfang) {return gebiete;}
}