Compare commits
6 Commits
Author | SHA1 | Date |
---|---|---|
Kai-Niklas Dippold | 0b7c978a1f | |
Kai-Niklas Dippold | 118fae79ad | |
Kai-Niklas Dippold | e09f33cf2a | |
Kai-Niklas Dippold | 3d95b1432c | |
Kai-Niklas Dippold | 001b696e35 | |
Kai-Niklas Dippold | 917dda46eb |
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Bank-System</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
|
||||
<attributes>
|
||||
<attribute name="module" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -4,16 +4,33 @@ import java.io.Serializable;
|
|||
|
||||
public class Girokonto extends Konto implements Serializable {
|
||||
|
||||
private long dispo = 1000;
|
||||
|
||||
public Girokonto(String inhaber, int kontozähler) {
|
||||
super(inhaber, kontozähler);
|
||||
}
|
||||
|
||||
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
||||
if (super.getKontostand() - betrag >= 0) {
|
||||
if (stand + dispo - betrag >= 0) {
|
||||
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
||||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||
if (stand + dispo - betrag >= 0) {
|
||||
stand = stand - betrag;
|
||||
|
||||
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -24,4 +41,8 @@ public class Girokonto extends Konto implements Serializable {
|
|||
return "Giro-" + super.toString();
|
||||
}
|
||||
|
||||
public long getDispo() {
|
||||
return dispo;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,54 @@
|
|||
package de.hs_mannheim.informatik.bank.domain;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
class GirokontoTest {
|
||||
|
||||
@Test
|
||||
void überweiseTest() {
|
||||
Girokonto k = new Girokonto("Müller", 0);
|
||||
Girokonto k2 = new Girokonto("Mayer", 1);
|
||||
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.überweise(k2, 50, "Test");
|
||||
|
||||
assertEquals(50, k.stand);
|
||||
assertEquals(50, k2.stand);
|
||||
}
|
||||
|
||||
@Test
|
||||
void überweiseTestDispo() {
|
||||
Girokonto k = new Girokonto("Müller", 0);
|
||||
Girokonto k2 = new Girokonto("Mayer", 1);
|
||||
|
||||
k.einzahlen(10, "Test", "Einzahlung", "JUnit");
|
||||
k.überweise(k2, 510, "Test");
|
||||
|
||||
assertEquals(-500, k.stand);
|
||||
assertEquals(510, k2.stand);
|
||||
|
||||
k.überweise(k2, 501, "JUnit"); // wird nicht überwiesen da dispo nur bis 1000 geht
|
||||
assertEquals(-500, k.stand);
|
||||
assertEquals(510, k2.stand);
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
void auszahlenTest() {
|
||||
Girokonto k = new Girokonto("Müller", 0);
|
||||
|
||||
k.einzahlen(10, "Test", "Einzahlung", "JUnit");
|
||||
k.auszahlen(5, "Test", "Auszahlung", "JUnit");
|
||||
assertEquals(5, k.stand);
|
||||
|
||||
k.auszahlen(15, "Test", "Auszahlung", "JUnit");
|
||||
assertEquals(-10, k.stand);
|
||||
|
||||
k.auszahlen(991, "Überzug", "Auszahlung", "JUnit");
|
||||
assertEquals(-10, k.stand);
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -5,10 +5,10 @@ import java.util.ArrayList;
|
|||
|
||||
public class Konto implements Serializable {
|
||||
private int nummer;
|
||||
private long stand = 0;
|
||||
protected long stand = 0;
|
||||
private String inhaber;
|
||||
|
||||
private ArrayList<Kontobewegung> kontobewegungen;
|
||||
protected ArrayList<Kontobewegung> kontobewegungen;
|
||||
|
||||
public Konto(String inhaber, int kontozähler) {
|
||||
nummer = 1000 + kontozähler;
|
||||
|
@ -38,6 +38,7 @@ public class Konto implements Serializable {
|
|||
stand += betrag;
|
||||
|
||||
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
|
||||
|
||||
}
|
||||
|
||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||
|
@ -63,4 +64,21 @@ public class Konto implements Serializable {
|
|||
return auflistung;
|
||||
}
|
||||
|
||||
public ArrayList<Kontobewegung> getKontobw() {
|
||||
return kontobewegungen;
|
||||
}
|
||||
|
||||
public String[] getSaldo() {
|
||||
String[] saldo = new String[11];
|
||||
long saldobetrag = 0;
|
||||
for (int i = 10; i > 0; i--) {
|
||||
saldo[i - 1] = kontobewegungen.get(kontobewegungen.size() - i).toString();
|
||||
saldobetrag = saldobetrag + kontobewegungen.get(kontobewegungen.size() - i).getBetrag();
|
||||
}
|
||||
|
||||
saldo[10] = "Saldo: " + saldobetrag;
|
||||
|
||||
return saldo;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
package de.hs_mannheim.informatik.bank.domain;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
|
@ -32,4 +36,30 @@ class KontoTest {
|
|||
assertEquals(50, k2.getKontostand());
|
||||
}
|
||||
|
||||
@Test
|
||||
void saldoTest() {
|
||||
Konto k = new Konto("Müller", 0);
|
||||
k.einzahlen(1, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(2, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(3, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(4, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(5, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(6, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(7, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(8, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(9, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(10, "Test", "Einzahlung", "JUnit");
|
||||
k.auszahlen(11, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(12, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(13, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(14, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(15, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(16, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(17, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(18, "Test", "Einzahlung", "JUnit");
|
||||
assertNotNull(k.getSaldo());
|
||||
String[] saldo = k.getSaldo();
|
||||
assertEquals("Saldo: 113", saldo[10]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -25,4 +25,8 @@ public class Kontobewegung implements Serializable {
|
|||
+ ", auftraggeber=" + auftraggeber + "]";
|
||||
}
|
||||
|
||||
public long getBetrag() {
|
||||
return betrag;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -81,4 +81,22 @@ public class Banksystem {
|
|||
return konto.getKontostand();
|
||||
}
|
||||
|
||||
public boolean checkSaldo(int kontonummer) {
|
||||
Konto konto = bank.findeKonto(kontonummer);
|
||||
if ((konto.getKontobw().size() - 1) % 10 == 0) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public String[] printSaldo(int kontonummer) {
|
||||
Konto konto = bank.findeKonto(kontonummer);
|
||||
return konto.getSaldo();
|
||||
}
|
||||
|
||||
public Bank getBank() {
|
||||
return bank;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,8 +3,12 @@ package de.hs_mannheim.informatik.bank.facade;
|
|||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.ui.UI;
|
||||
|
||||
class SystemTest {
|
||||
|
||||
@Test
|
||||
|
@ -16,4 +20,68 @@ class SystemTest {
|
|||
assertEquals("Testsystem", bs.getBankname());
|
||||
}
|
||||
|
||||
@Test
|
||||
void einzahlenTest() throws Exception {
|
||||
Banksystem bs = new Banksystem("Testsystem");
|
||||
|
||||
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||
assertEquals(500, bs.getKontostand(1000));
|
||||
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
}
|
||||
|
||||
@Test
|
||||
void auszahlenTest() throws Exception {
|
||||
Banksystem bs = new Banksystem("Testsystem");
|
||||
|
||||
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||
bs.geldAuszahlen(1000, 400);
|
||||
|
||||
assertEquals(100, bs.getKontostand(1000));
|
||||
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
}
|
||||
|
||||
@Test
|
||||
void persistenzTest() throws Exception {
|
||||
Banksystem bs = new Banksystem("Testsystem");
|
||||
|
||||
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||
|
||||
bs = null;
|
||||
|
||||
Banksystem bs1 = new Banksystem("Testsystem");
|
||||
|
||||
assertEquals(500, bs1.getKontostand(1000));
|
||||
|
||||
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
void saldoTest() throws Exception {
|
||||
Banksystem bs = new Banksystem("Testsystem");
|
||||
UI UI = new UI(bs);
|
||||
|
||||
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
|
||||
assertNotNull(bs.getBank().findeKonto(1000).getSaldo());
|
||||
String[] saldo = bs.getBank().findeKonto(1000).getSaldo();
|
||||
assertEquals("Kontostand: 1200", saldo[10]);
|
||||
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -16,8 +16,7 @@ public class UI {
|
|||
private void hauptmenü() {
|
||||
System.out.println("Willkommen bei der " + bs.getBankname() + "!");
|
||||
|
||||
mainloop:
|
||||
while (true) {
|
||||
mainloop: while (true) {
|
||||
System.out.println();
|
||||
System.out.println("--------");
|
||||
System.out.println("Hauptmenü");
|
||||
|
@ -27,6 +26,7 @@ public class UI {
|
|||
System.out.println("4 -> Geld auszahlen");
|
||||
System.out.println("5 -> Kontoauszug drucken");
|
||||
System.out.println("6 -> Überweisung beauftragen");
|
||||
System.out.println("7 -> Saldo ausgeben");
|
||||
|
||||
System.out.println("9 -> Beenden");
|
||||
System.out.println();
|
||||
|
@ -37,15 +37,28 @@ public class UI {
|
|||
|
||||
try {
|
||||
switch (input) {
|
||||
case 1: kontenAnzeigen(); break;
|
||||
case 1:
|
||||
kontenAnzeigen();
|
||||
break;
|
||||
case 2:
|
||||
kontoAnlegen();
|
||||
break;
|
||||
case 3: geldEinzahlen(); break;
|
||||
case 4: geldAuszahlen(); break;
|
||||
case 5: kontoauszugDrucken(); break;
|
||||
case 6: überweisungBeauftragen(); break;
|
||||
case 9: break mainloop;
|
||||
case 3:
|
||||
geldEinzahlen();
|
||||
break;
|
||||
case 4:
|
||||
geldAuszahlen();
|
||||
break;
|
||||
case 5:
|
||||
kontoauszugDrucken();
|
||||
break;
|
||||
case 6:
|
||||
überweisungBeauftragen();
|
||||
break;
|
||||
case 7:
|
||||
|
||||
case 9:
|
||||
break mainloop;
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
|
@ -92,7 +105,12 @@ public class UI {
|
|||
double betrag = Double.parseDouble(sc.nextLine());
|
||||
|
||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long) betrag * 100);
|
||||
|
||||
if (checkSaldo(kontonummer)) {
|
||||
String[] saldo = printSaldo(kontonummer);
|
||||
for (int i = 0; i < 11; i++) {
|
||||
System.out.println(saldo[i]);
|
||||
}
|
||||
}
|
||||
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
||||
}
|
||||
|
||||
|
@ -105,7 +123,12 @@ public class UI {
|
|||
double betrag = Double.parseDouble(sc.nextLine());
|
||||
|
||||
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long) betrag * 100);
|
||||
|
||||
if (checkSaldo(kontonummer)) {
|
||||
String[] saldo = printSaldo(kontonummer);
|
||||
for (int i = 0; i < 11; i++) {
|
||||
System.out.println(saldo[i]);
|
||||
}
|
||||
}
|
||||
System.out.printf("Auszahlung" + ((!erfolgreich) ? " nicht" : "") + " erfolgreich. ");
|
||||
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
||||
}
|
||||
|
@ -142,8 +165,32 @@ public class UI {
|
|||
String verwendungszweck = sc.nextLine();
|
||||
|
||||
boolean erfolgreich = bs.überweisungBeauftragen(startkonto, zielkonto, (long) (betrag * 100), verwendungszweck);
|
||||
|
||||
if (checkSaldo(startkonto)) {
|
||||
String[] saldo = printSaldo(startkonto);
|
||||
for (int i = 0; i < 11; i++) {
|
||||
System.out.println(saldo[i]);
|
||||
}
|
||||
}
|
||||
System.out.println("Überweisung" + ((!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||
}
|
||||
|
||||
private boolean checkSaldo(int kontonummer) {
|
||||
return bs.checkSaldo(kontonummer);
|
||||
|
||||
}
|
||||
|
||||
private String[] printSaldo(int kontonummer) {
|
||||
return bs.printSaldo(kontonummer);
|
||||
}
|
||||
|
||||
private void SaldoAusgeben() {
|
||||
System.out.print("Bitte die gewünschte Kontonummer für das Saldo eingeben: ");
|
||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||
|
||||
for (String s : printSaldo(kontonummer)) {
|
||||
System.out.println(s);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 276 KiB |
Loading…
Reference in New Issue