From b8b3d78b78f219e9fbda309728f19863e60ce4f5 Mon Sep 17 00:00:00 2001 From: schrom01 Date: Fri, 12 Nov 2021 10:37:38 +0100 Subject: [PATCH 1/5] reformating code --- README.md | 59 +++++++++++++++++++++++++--------------- docs/Equivalent.md | 2 +- docs/Pflichtenheft.md | 59 ++++++++++++++++++++++++++++------------ src/Text.java | 13 ++++----- src/TextLogic.java | 2 +- src/TextOutput.java | 21 ++++++-------- test/TextOutputTest.java | 1 - test/TextTest.java | 10 +++---- 8 files changed, 100 insertions(+), 67 deletions(-) diff --git a/README.md b/README.md index e20b07a..1405ce4 100644 --- a/README.md +++ b/README.md @@ -1,49 +1,64 @@ -#Texteditor +# Texteditor + Texteditor is a program to edit a text by in- and output into the console. -#Usermanual -#ADD a paragraph + +# Usermanual + +# ADD a paragraph + ```ADD``` -First please enter the command add to add a new paragraph at the end of text. Then enter the text you want to add . +First please enter the command add to add a new paragraph at the end of text. Then enter the text you want to add . ```ADD [n]``` -If you want to add a paragraph between existing paragraphs then please use the command add and then enter the paragraphnumber it should get. -After that enter the text you want to add to that paragraph. +If you want to add a paragraph between existing paragraphs then please use the command add and then enter the +paragraphnumber it should get. After that enter the text you want to add to that paragraph. + +# DUMMY Text -#DUMMY Text ```DUMMY``` First please enter the command dummy to enter a pre written paragraph into the text. ```DUMMY [n]``` -If you want to enter a pre written dummy paragraph between existing paragraphs then please enter the command dummy and then enter the paragraphnumber it should get. +If you want to enter a pre written dummy paragraph between existing paragraphs then please enter the command dummy and +then enter the paragraphnumber it should get. + +# REPLACE a Text -#REPLACE a Text ```REPLACE``` -First please enter the command replace then enter the characters that you want to replace. After that please enter -the new characters that should replace the old characters. If don't enter a paragraphnumber, the change will be made in the last paragraph. +First please enter the command replace then enter the characters that you want to replace. After that please enter the +new characters that should replace the old characters. If don't enter a paragraphnumber, the change will be made in the +last paragraph. ```REPLACE [n]``` -If you want to replace a text from a specific paragraph, please enter the command and the paragraphnumber and then enter the characters you want to -replace. After you entered the characters you want to replace please enter now the new characters that should replace the -old characters. +If you want to replace a text from a specific paragraph, please enter the command and the paragraphnumber and then enter +the characters you want to replace. After you entered the characters you want to replace please enter now the new +characters that should replace the old characters. + +# DELETE a Text -#DELETE a Text ```DEL``` First please enter the command del to delete the last paragraph. ```DEL [n]``` If you want to delete a specific paragraph then please enter the command del and then the paragraph you want to delete. -#INDEX +# INDEX + ```INDEX``` Please enter the command index to show the index. -#Print the Text -```PRINT``` -Please enter the command print to print out the current text you have. To change the output format, use the commands ```FORMAT FIX``` and ```FORMAT RAW``` +# Print the Text + +```PRINT``` +Please enter the command print to print out the current text you have. To change the output format, use the +commands ```FORMAT FIX``` and ```FORMAT RAW``` + +# FORMAT the Text -#FORMAT the Text ```FORMAT RAW``` -Please enter the command format raw to change the print format to raw. After you changed the format to raw, each paragraph will be printed on one line with it's paragraph number. +Please enter the command format raw to change the print format to raw. After you changed the format to raw, each +paragraph will be printed on one line with it's paragraph number. ```FORMAT FIX [n]``` -Please enter the command format fix and the line length which should be used. After you changed the format to fix, the defined line length will be used to print the text. +Please enter the command format fix and the line length which should be used. After you changed the format to fix, the +defined line length will be used to print the text. diff --git a/docs/Equivalent.md b/docs/Equivalent.md index 83f7ba7..0843df2 100644 --- a/docs/Equivalent.md +++ b/docs/Equivalent.md @@ -1,4 +1,4 @@ -#Equivalent +# Equivalent ### Text.java Index method diff --git a/docs/Pflichtenheft.md b/docs/Pflichtenheft.md index 7ef16b0..db2d0d7 100644 --- a/docs/Pflichtenheft.md +++ b/docs/Pflichtenheft.md @@ -2,7 +2,8 @@ ## Aufgabe -Programmieren Sie eine einfache Textverarbeitung mit Ein- und Ausgabe über die Konsole. Diese soll als eigenständige Anwendung laufen und über den folgenden Befehlssatz gesteuert werden: +Programmieren Sie eine einfache Textverarbeitung mit Ein- und Ausgabe über die Konsole. Diese soll als eigenständige +Anwendung laufen und über den folgenden Befehlssatz gesteuert werden: | Befehl | Beschreibung | | :--- | :--- | @@ -19,19 +20,29 @@ Programmieren Sie eine einfache Textverarbeitung mit Ein- und Ausgabe über die ## Anforderungen - Ihre Anwendung muss eigenständig laufen, also durch Aufruf von main() und ohne BlueJ. -- Schreiben Sie Rückmeldungen zu Fehlern (z.B. «Unbekanntes Kommando») statt auf die Standardausgabe (System.out) auf die Standardfehlerausgabe (Sytem.err). Die Syntax ist analog zu der von System.out bekannten ("System.err.println"). -- Sie dürfen alle in der Vorlesung bis zur Abgabe durchgenommenen Konstrukte benutzen, jedoch nur diese. Dies schliesst insbesondere ein: Allen Stoff im BlueJ-Buch bis und mit Kapitel 9, JUnit Testing, Packages zur Verwaltung Ihres Codes. Es schliesst insbesondere aus: Vererbung, Einbindung von Paketen ausserhalb java.util.* -- Als "Absatz" definieren wir eine über die unten beschriebene Scanner.nextline() - Methode eingelesenen String. Validieren Sie den erhaltenen Input und filtern Sie alle Sonderzeichen (d.h. der in die Anwendung übernommene Text darf nur Buchstaben, Zahlen, Leerzeichen und Satzzeichen enthalten). +- Schreiben Sie Rückmeldungen zu Fehlern (z.B. «Unbekanntes Kommando») statt auf die Standardausgabe (System.out) auf + die Standardfehlerausgabe (Sytem.err). Die Syntax ist analog zu der von System.out bekannten ("System.err.println"). +- Sie dürfen alle in der Vorlesung bis zur Abgabe durchgenommenen Konstrukte benutzen, jedoch nur diese. Dies schliesst + insbesondere ein: Allen Stoff im BlueJ-Buch bis und mit Kapitel 9, JUnit Testing, Packages zur Verwaltung Ihres Codes. + Es schliesst insbesondere aus: Vererbung, Einbindung von Paketen ausserhalb java.util.* +- Als "Absatz" definieren wir eine über die unten beschriebene Scanner.nextline() - Methode eingelesenen String. + Validieren Sie den erhaltenen Input und filtern Sie alle Sonderzeichen (d.h. der in die Anwendung übernommene Text + darf nur Buchstaben, Zahlen, Leerzeichen und Satzzeichen enthalten). - Das Einlesen und Abspeichern von Dateien ist in diesem Projekt nicht notwendig. -- Ihr Code ist in Javadoc (mindestens für Klassen und Public Methods und zusätzlich für Konstruktoren, jedoch generell ohne Getter/Setter) und wo sinnvoll in Zeilenkommentaren zur Funktionalität dokumentiert. Ihr Klassendiagramm ist auf GitHub abgelegt. Die zur Übersetzung und Start nötigen Aufrufe sind separat im README für Ihr Repo dokumentiert. -- Definieren Sie Unit Tests für die Index-Funktionalität, implementieren Sie diese in JUnit und führen Sie sie aus. Dokumentieren Sie die Tests. +- Ihr Code ist in Javadoc (mindestens für Klassen und Public Methods und zusätzlich für Konstruktoren, jedoch generell + ohne Getter/Setter) und wo sinnvoll in Zeilenkommentaren zur Funktionalität dokumentiert. Ihr Klassendiagramm ist auf + GitHub abgelegt. Die zur Übersetzung und Start nötigen Aufrufe sind separat im README für Ihr Repo dokumentiert. +- Definieren Sie Unit Tests für die Index-Funktionalität, implementieren Sie diese in JUnit und führen Sie sie aus. + Dokumentieren Sie die Tests. - Wenden Sie die relevanten Abschnitte im Clean-Code-Handbuch an. ## Hinweise - Achten Sie beim Klassenentwurf auf Kohäsion und Kopplung und beachten Sie auch die Hinweise im Clean-Code-Handbuch. -- Fehlervermeidung und JUnit wird in Programmieren 1 durchgenommen. Planen Sie genügend Zeit ein, um Ihre Tests zu definieren, umzusetzen und allfällige Fehler zu korrigieren. -- Für Management und Dokumentation von Arbeitsschritten empfehlen wir das Issue Tracking in GitHub. Andere Lösungen sind denkbar. +- Fehlervermeidung und JUnit wird in Programmieren 1 durchgenommen. Planen Sie genügend Zeit ein, um Ihre Tests zu + definieren, umzusetzen und allfällige Fehler zu korrigieren. +- Für Management und Dokumentation von Arbeitsschritten empfehlen wir das Issue Tracking in GitHub. Andere Lösungen sind + denkbar. - Eine Quelle für Blindtext ist https://lipsum.com/. Andere Texte sind möglich. ## Vorgehen @@ -48,7 +59,9 @@ Wir empfehlen, etwa folgendermassen vorzugehen: ## Abgabe -Legen Sie für das Projekt ein Repository gemäss der bereits aus Projekt 1 bekannten Anleitung an. Der von Ihnen erarbeitete Code muss zur Abgabe bis zur bekanntgegebenen Deadline dort hochgeladen werden. Abgaben auf anderen Services (github.com, OneDrive, etc.) werden nicht gewertet. +Legen Sie für das Projekt ein Repository gemäss der bereits aus Projekt 1 bekannten Anleitung an. Der von Ihnen +erarbeitete Code muss zur Abgabe bis zur bekanntgegebenen Deadline dort hochgeladen werden. Abgaben auf anderen +Services (github.com, OneDrive, etc.) werden nicht gewertet. ## Bewertung @@ -56,24 +69,32 @@ Für diese Aufgabe erhalten Sie maximal 15 Punkte. In die Bewertung fliessen fol ### Allgemeine Anforderung (all-or-nothing) -- Voraussetzung für Punkterteilung: Das Programm ist lauffähig. (Kriterium: Vorführung oder Test durch Ihre Dozierenden) Ein nicht lauffähiges Programm erhält 0 Punkte. - Ein lauffähiges Programm wird in den folgenden beiden Bereichen beurteilt. Für Teil- oder Nichterfüllung werden Abzüge in Ansatz gebracht. Das Nichterfüllen einer Unterkategorie kann zum vollständigen Abzug in einem Bereich führen. Es werden keine Negativpunkte vergeben. - +- Voraussetzung für Punkterteilung: Das Programm ist lauffähig. (Kriterium: Vorführung oder Test durch Ihre Dozierenden) + Ein nicht lauffähiges Programm erhält 0 Punkte. Ein lauffähiges Programm wird in den folgenden beiden Bereichen + beurteilt. Für Teil- oder Nichterfüllung werden Abzüge in Ansatz gebracht. Das Nichterfüllen einer Unterkategorie kann + zum vollständigen Abzug in einem Bereich führen. Es werden keine Negativpunkte vergeben. ### Bereich Entwicklung - Ihr Programm besitzt die geforderte Funktionalität. (Vorführung oder Test durch Ihre Dozierenden) -- Sie halten die Vorgaben hinsichtlich einsetzbarer Konstrukte und Clean Code ein. (Codeanalyse durch Ihre Dozierenden, ggf. Erläuterung) -- Sie haben eine gute Klassenaufteilung gefunden. Das Klassendiagramm ist auf GitHub mit hochzuladen. (Analyse durch Ihre Dozierenden, ggf. Erläuterung) -- Sie haben sinnvolle Test Cases für die Funktion Index definiert, diese in JUnit umgesetzt und erfolgreich ausgeführt. (Dokumentation über Test Cases und erfolgreiche Tests, diese sind auf GitHub mit hochzuladen.) +- Sie halten die Vorgaben hinsichtlich einsetzbarer Konstrukte und Clean Code ein. (Codeanalyse durch Ihre Dozierenden, + ggf. Erläuterung) +- Sie haben eine gute Klassenaufteilung gefunden. Das Klassendiagramm ist auf GitHub mit hochzuladen. (Analyse durch + Ihre Dozierenden, ggf. Erläuterung) +- Sie haben sinnvolle Test Cases für die Funktion Index definiert, diese in JUnit umgesetzt und erfolgreich + ausgeführt. (Dokumentation über Test Cases und erfolgreiche Tests, diese sind auf GitHub mit hochzuladen.) ### Bereich Vorgehen und Dokumentation - Ihr Code ist mit JavaDoc dokumentiert. (s.a. Hinweis unter "Anforderungen", Analyse durch Ihre Dozierenden) -- Alle Gruppenmitglieder haben in nennenswertem Umfang Code beigetragen und auf GitHub eingecheckt. (Check durch GitHub Log) +- Alle Gruppenmitglieder haben in nennenswertem Umfang Code beigetragen und auf GitHub eingecheckt. (Check durch GitHub + Log) ## Beispielcode zum Konsoleneingabe -Die Eingabe von Text ist im BlueJ-Buch, Kapitel 6 erwähnt und in Kapitel 14.9. genauer beschrieben. Wenn Sie Probleme bei der Anwendung der Texteingabe haben, wenden Sie sich an Ihre Dozierenden. Die Anwendung der Scanner-Klasse sollte nach dem gegebenen Muster jedoch einfach gelingen. + +Die Eingabe von Text ist im BlueJ-Buch, Kapitel 6 erwähnt und in Kapitel 14.9. genauer beschrieben. Wenn Sie Probleme +bei der Anwendung der Texteingabe haben, wenden Sie sich an Ihre Dozierenden. Die Anwendung der Scanner-Klasse sollte +nach dem gegebenen Muster jedoch einfach gelingen. In der Grundfunktionalität sieht sie folgendermassen aus: @@ -115,4 +136,6 @@ public class InputReaderMod { } ``` -**Quelle**: Anpassung von InputReader.java (englischsprachige Fassung der im Buch in Kap. 6 erwähnten Klasse EingabeLeser.java) aus dem Unterverzeichnis projects/chapter06/ tech-support-complete im Archiv https://bluej.org/objects-first/resources/projects.zip) +**Quelle**: Anpassung von InputReader.java (englischsprachige Fassung der im Buch in Kap. 6 erwähnten Klasse +EingabeLeser.java) aus dem Unterverzeichnis projects/chapter06/ tech-support-complete im +Archiv https://bluej.org/objects-first/resources/projects.zip) diff --git a/src/Text.java b/src/Text.java index d0daaaf..2ca4077 100644 --- a/src/Text.java +++ b/src/Text.java @@ -10,11 +10,11 @@ import java.util.Map; */ public class Text { + private static final String dummyText = "The standard Lorem Ipsum passage, used since the 1500s \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\" Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC \"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"; /** * The DataFields text and dummyText save the objects that are being used in this class. */ private final ArrayList text = new ArrayList<>(); - private static final String dummyText = "The standard Lorem Ipsum passage, used since the 1500s \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\" Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC \"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"; /** * Method to check if a specific paragraph exists. @@ -48,7 +48,7 @@ public class Text { * @return returns true if the paragraph is added successfully. */ public boolean add(String text) { - this.text.add(text.replaceAll("[^A-Za-z0-9 .,:?!\"'-]","")); + this.text.add(text.replaceAll("[^A-Za-z0-9 .,:?!\"'-]", "")); return true; } @@ -105,7 +105,7 @@ public class Text { * @return returns true if the paragraph is changed successfully. */ public boolean replace(String oldChar, String newChar) { - if(paragraphExists(text.size())) { + if (paragraphExists(text.size())) { text.set((text.size() - 1), text.get(text.size() - 1).replace(oldChar, newChar)); return true; } @@ -133,7 +133,7 @@ public class Text { * @return True: if paragraph has been deleted. */ public boolean del() { - if(paragraphExists(text.size())){ + if (paragraphExists(text.size())) { text.remove(text.size() - 1); return true; } @@ -148,7 +148,7 @@ public class Text { * @return ArrayList */ public ArrayList index() { - HashMap> wordbook = new HashMap<>(); + HashMap> wordbook = new HashMap<>(); createWordlist(wordbook); String input; ArrayList output = new ArrayList<>(); @@ -174,9 +174,8 @@ public class Text { /** * This method counts all words in text and adds the count together with the paragraph where the word has been used to a Hashmap. - * */ - private void createWordlist(HashMap> wordbook) { + private void createWordlist(HashMap> wordbook) { int counter; ArrayList numbersList; String firstLetter; diff --git a/src/TextLogic.java b/src/TextLogic.java index 9205b27..f3feb4e 100644 --- a/src/TextLogic.java +++ b/src/TextLogic.java @@ -32,7 +32,7 @@ public class TextLogic { switch (command[0]) { case "ADD": String inputText = ""; - while(inputText.length() == 0) { + while (inputText.length() == 0) { textOutput.userInfoOutput("Please enter your text: "); inputText = TextInput.getTextInput(); } diff --git a/src/TextOutput.java b/src/TextOutput.java index 625abb8..16d577a 100644 --- a/src/TextOutput.java +++ b/src/TextOutput.java @@ -17,10 +17,9 @@ public class TextOutput { * @param text the ArrayList which is then formatted into the desired output. */ public void print(ArrayList text) { - if(text.size() == 0) { + if (text.size() == 0) { errorMissingText(); - } - else if (formatRaw) { + } else if (formatRaw) { printFormated(text); } else { toFormat(text); @@ -50,15 +49,15 @@ public class TextOutput { String[] words = paragraph.split(" "); int lastWordNumber = words.length; int currentWordNumber = 0; - for(String word : words) { + for (String word : words) { currentWordNumber++; - if (word.length()>= columnWidth - currentLength && currentWordNumber != 1) { + if (word.length() >= columnWidth - currentLength && currentWordNumber != 1) { System.out.println(); currentLength = 0; } System.out.print(word); - if(!(currentWordNumber == lastWordNumber)) { + if (!(currentWordNumber == lastWordNumber)) { System.out.print(" "); currentLength = currentLength + word.length() + 1; } else { @@ -86,12 +85,11 @@ public class TextOutput { * @param length the paragraph length when printing the text. */ public void formatFix(int length) { - if(length > 0) { + if (length > 0) { formatRaw = false; columnWidth = length; userInfoOutput("Command was successful"); - } - else { + } else { System.err.println("Minimum length has to be greater than 0"); } } @@ -111,10 +109,9 @@ public class TextOutput { * @param index ArrayList with words and in which part they have */ public void indexOutput(ArrayList index) { - if(index.size() == 0) { + if (index.size() == 0) { userInfoOutput("index empty"); - } - else { + } else { for (String word : index) { System.out.println(word); } diff --git a/test/TextOutputTest.java b/test/TextOutputTest.java index 17d72b9..a066f71 100644 --- a/test/TextOutputTest.java +++ b/test/TextOutputTest.java @@ -1,7 +1,6 @@ import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; - import java.util.ArrayList; class TextOutputTest { diff --git a/test/TextTest.java b/test/TextTest.java index 376dc42..fa6eb80 100644 --- a/test/TextTest.java +++ b/test/TextTest.java @@ -1,6 +1,7 @@ import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; + import java.util.ArrayList; @@ -32,7 +33,6 @@ public class TextTest { } /** - * * Test Method del */ @Test @@ -77,8 +77,8 @@ public class TextTest { txt.add("Word word etc. !!test zweite... Zeile"); txt.add("Lorem ipsum lorem ipsum TEST"); stringListe = txt.index(); - Assertions.assertEquals("Word 1, 2",stringListe.get(0)); - Assertions.assertEquals("Test 1, 2, 3",stringListe.get(1)); + Assertions.assertEquals("Word 1, 2", stringListe.get(0)); + Assertions.assertEquals("Test 1, 2, 3", stringListe.get(1)); //End of Test setup(); @@ -86,14 +86,14 @@ public class TextTest { //Positiv Testcase Two txt.add("Word word Word Test"); stringListe = txt.index(); - Assertions.assertEquals("Word 1",stringListe.get(0)); + Assertions.assertEquals("Word 1", stringListe.get(0)); //End of Test setup(); //Negativ Testcase One stringListe = txt.index(); - Assertions.assertEquals(0,stringListe.size()); + Assertions.assertEquals(0, stringListe.size()); } @Test From ba6046ac93ab900df93853840b798e805d0a5a5c Mon Sep 17 00:00:00 2001 From: schrom01 Date: Fri, 12 Nov 2021 10:41:23 +0100 Subject: [PATCH 2/5] reformating code --- src/TextOutput.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/TextOutput.java b/src/TextOutput.java index 16d577a..9b21b07 100644 --- a/src/TextOutput.java +++ b/src/TextOutput.java @@ -56,7 +56,6 @@ public class TextOutput { currentLength = 0; } System.out.print(word); - if (!(currentWordNumber == lastWordNumber)) { System.out.print(" "); currentLength = currentLength + word.length() + 1; From fb60ea19f07ad7ca73bf677d052a5d8cbe6bdfef Mon Sep 17 00:00:00 2001 From: Andrin Fassbind Date: Fri, 12 Nov 2021 10:49:19 +0100 Subject: [PATCH 3/5] Split up index Test method --- docs/{Equivalent.md => EquivalentClass.md} | 2 +- test/TextTest.java | 30 +++++++++++++--------- 2 files changed, 19 insertions(+), 13 deletions(-) rename docs/{Equivalent.md => EquivalentClass.md} (97%) diff --git a/docs/Equivalent.md b/docs/EquivalentClass.md similarity index 97% rename from docs/Equivalent.md rename to docs/EquivalentClass.md index 83f7ba7..a697e56 100644 --- a/docs/Equivalent.md +++ b/docs/EquivalentClass.md @@ -1,4 +1,4 @@ -#Equivalent +#Equivalentclass ### Text.java Index method diff --git a/test/TextTest.java b/test/TextTest.java index 376dc42..cae5683 100644 --- a/test/TextTest.java +++ b/test/TextTest.java @@ -6,9 +6,11 @@ import java.util.ArrayList; public class TextTest { Text txt; + ArrayList stringListe; @BeforeEach void setup() { + ArrayList stringListe = new ArrayList<>(); txt = new Text(); } @@ -67,31 +69,35 @@ public class TextTest { /** * Test methode for Index method + * For TestCase Positiv Testcase One, Three and Four Negativ Testcase Two */ @Test - void indexTest() { - ArrayList stringListe; - - //Positiv Testcase One, Three and Four Negativ Testcase Two + void indexTestOne() { txt.add("Word word Test"); txt.add("Word word etc. !!test zweite... Zeile"); txt.add("Lorem ipsum lorem ipsum TEST"); stringListe = txt.index(); Assertions.assertEquals("Word 1, 2",stringListe.get(0)); Assertions.assertEquals("Test 1, 2, 3",stringListe.get(1)); - //End of Test + } - setup(); - - //Positiv Testcase Two + /** + * Test methode for Index method + * For TestCase Positiv Testcase Two + */ + @Test + void indexTestTwo() { txt.add("Word word Word Test"); stringListe = txt.index(); Assertions.assertEquals("Word 1",stringListe.get(0)); - //End of Test + } - setup(); - - //Negativ Testcase One + /** + * Test methode for Index method + * For TestCase Negativ Testcase One + */ + @Test + void indexTestThree() { stringListe = txt.index(); Assertions.assertEquals(0,stringListe.size()); } From bac531a67439c851a77b545828db0ebffc757b7a Mon Sep 17 00:00:00 2001 From: Andrin Fassbind Date: Fri, 12 Nov 2021 10:53:40 +0100 Subject: [PATCH 4/5] Split up index Test method --- test/TextTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TextTest.java b/test/TextTest.java index fa19e6d..875d14b 100644 --- a/test/TextTest.java +++ b/test/TextTest.java @@ -11,7 +11,7 @@ public class TextTest { @BeforeEach void setup() { - ArrayList stringListe = new ArrayList<>(); + stringListe = new ArrayList<>(); txt = new Text(); } From ed97f2300c1d23cde60965ca6d932aac144d3ccd Mon Sep 17 00:00:00 2001 From: Leonardo Brandenberger Date: Fri, 12 Nov 2021 10:54:37 +0100 Subject: [PATCH 5/5] improved the README.md --- README.md | 84 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 43 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index 75199a3..910e632 100644 --- a/README.md +++ b/README.md @@ -1,64 +1,66 @@ -# Texteditor - -Texteditor is a program to edit a text by in- and output into the console. - -# Usermanual - -# ADD a paragraph - +#Texteditor +Texteditor is a program to edit a text by using the input and is then able to output it as desired via the console. +#Usermanual +#ADD a paragraph ```ADD``` -First please enter the command add to add a new paragraph at the end of text. Then enter the text you want to add . +Adds custom text to the last paragraph.

+Enter the command add to add a new paragraph at the end of text. After submitting the add command you will be prompted to enter the text to add as last paragraph. ```ADD [n]``` -If you want to add a paragraph between existing paragraphs then please use the command add and then enter the -paragraphnumber it should get. After that enter the text you want to add to that paragraph. - -# DUMMY Text +Adds custom text to the desired paragraph.

+Enter the command add with the paragraph number where it should be added. +After submitting the add [n] command you will be prompted to enter the text to add in the corresponding paragraph. +#DUMMY Text ```DUMMY``` -First please enter the command dummy to enter a pre written paragraph into the text. +Inserts a dummy text at the end of the text.

+Enter the command dummy to enter a pre-written paragraph into the text as your last paragraph. ```DUMMY [n]``` -If you want to enter a pre written dummy paragraph between existing paragraphs then please enter the command dummy and -then enter the paragraphnumber it should get. - -# REPLACE a Text +Inserts a dummy text in the selected paragraph.

+Enter the command dummy with a paragraph number to insert a pre-written dummy text in the corresponding paragraph. +#REPLACE a Text ```REPLACE``` -First please enter the command replace then enter the characters that you want to replace. After that please enter the -new characters that should replace the old characters. If don't enter a paragraphnumber, the change will be made in the -last paragraph. +Replaces desired words in the whole text with a desired replacement.

+Enter the command replace, after submitting the command replace enter the characters that should be replaced. After submitting the characters you will be +need to input the characters wich will replace the previous characters. ```REPLACE [n]``` -If you want to replace a text from a specific paragraph, please enter the command and the paragraphnumber and then enter -the characters you want to replace. After you entered the characters you want to replace please enter now the new -characters that should replace the old characters. - -# DELETE a Text +Replaces desired words in the chosen paragraph [n] text with a desired replacement.

+Enter the command replace with a desired paragraph where the characters should be replaced, +after submitting the command replace enter the characters that should be replaced. After submitting the characters you will be +need to input the characters wich will replace the previous characters. +#DELETE a Text ```DEL``` -First please enter the command del to delete the last paragraph. +Deletes the last paragraph.

+Enter the command del to delete the last paragraph. ```DEL [n]``` -If you want to delete a specific paragraph then please enter the command del and then the paragraph you want to delete. - -# INDEX +Deletes the selected paragraph.

+Enter the command del with a paragraph number, the corresponding paragraph will then be deleted. +#INDEX the words ```INDEX``` -Please enter the command index to show the index. - -# PRINT the Text +Diplays the index of words used 3 times or more.

+Enter the command index to display the words that are displayed more than three times in a paragraph with their corresponding paragraphs. +#Print the Text ```PRINT``` -Please enter the command print to print out the current text you have. To change the output format, use the -commands ```FORMAT FIX``` and ```FORMAT RAW``` - -# FORMAT the Text +Prints the text with the previously set format option.

+Enter the command print to print out the current text you have. The Text will be printed with the settings set before (see FORMAT the Text). +If no settings have been set the standard to output is the RAW format. +#FORMAT the Text ```FORMAT RAW``` -Please enter the command format raw to change the print format to raw. After you changed the format to raw, each -paragraph will be printed on one line with it's paragraph number. +Sets the format to raw.

+Enter the command format raw to change the print format to raw. After you changed the format to raw you can use the command ```PRINT``` again +and each paragraph will be printed on one line with its corresponding paragraph number. ```FORMAT FIX [n]``` -Please enter the command format fix and the line length which should be used. After you changed the format to fix, the -defined line length will be used to print the text. +Sets the format fix with the maximum line length.

+Enter the command format fix and the max line length which will be used. After you changed the format to fix you can use the command ```PRINT``` again +and the text will be displayed with the max length in mind and a new line will be created if no space is left for a paragraph. +If the word is too long to fit the paragraph it will be displayed as whole, ignoring the max length. +