FIX::fixed package names and imports

changed gogreen to greenify

FIX::made user tostring test succeed

added toString method to user
This commit is contained in:
Sem van der Hoeven
2019-03-12 22:53:43 +01:00
parent d02393400e
commit a265c286eb
19 changed files with 53 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
package gogreen.client;
package greenify.client;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;

View File

@@ -1,6 +1,6 @@
package gogreen.client.controller;
package greenify.client.controller;
import gogreen.client.rest.UserService;
import greenify.client.rest.UserService;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Button;

View File

@@ -1,6 +1,6 @@
package gogreen.client.controller;
package greenify.client.controller;
import gogreen.client.rest.UserService;
import greenify.client.rest.UserService;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;

View File

@@ -1,6 +1,6 @@
package gogreen.client.rest;
package greenify.client.rest;
import gogreen.common.UserDTO;
import greenify.common.UserDTO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.context.annotation.Bean;

View File

@@ -1,4 +1,4 @@
import gogreen.client.Application;
import greenify.client.Application;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.junit4.SpringRunner;

View File

@@ -1,5 +1,5 @@
import gogreen.client.rest.UserService;
import gogreen.common.UserDTO;
import greenify.client.rest.UserService;
import greenify.common.UserDTO;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;