Skip to content
Snippets Groups Projects
Commit bd8ea4b8 authored by SIMONVOLLENDORF\Simon's avatar SIMONVOLLENDORF\Simon
Browse files

kleine Änderung im RegTest

parent 3543f5ca
No related branches found
No related tags found
No related merge requests found
...@@ -112,7 +112,7 @@ public class RegistrierungView extends TemplateView implements View { ...@@ -112,7 +112,7 @@ public class RegistrierungView extends TemplateView implements View {
bestätigen.addClickListener( e -> { bestätigen.addClickListener(e -> {
String benutzer = benutzername.getValue(); String benutzer = benutzername.getValue();
String nachname = nachnameTxt.getValue(); String nachname = nachnameTxt.getValue();
String vorname = vornameTxt.getValue(); String vorname = vornameTxt.getValue();
......
...@@ -2,7 +2,6 @@ package org.s4s.dao.impl; ...@@ -2,7 +2,6 @@ package org.s4s.dao.impl;
import static org.junit.Assert.*; import static org.junit.Assert.*;
import org.junit.Test; import org.junit.Test;
import org.s4s.process.control.RegistrationControl;
/** /**
* Created by uerdingen on 03.06.17. * Created by uerdingen on 03.06.17.
...@@ -15,6 +14,7 @@ public class RegistrationControl_Test { ...@@ -15,6 +14,7 @@ public class RegistrationControl_Test {
public void nameValidator_Test() { public void nameValidator_Test() {
assertTrue(RegistrationControl.nameValidator("Uerdingen")); assertTrue(RegistrationControl.nameValidator("Uerdingen"));
assertFalse(RegistrationControl.nameValidator("fs2df3")); assertFalse(RegistrationControl.nameValidator("fs2df3"));
} }
//unfinished //unfinished
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment