Rename the project and the package name in tests.

This commit is contained in:
2023-11-26 13:40:12 +02:00
parent 4feca1319e
commit acbcee46f1
3 changed files with 18 additions and 18 deletions
@@ -1,13 +1,13 @@
package space.kklochko.jpa_hospital_example.db.repositories
package space.kklochko.spring_rest_example.db.repositories
import groovy.sql.Sql
import jakarta.persistence.EntityManager
import org.junit.Ignore
import space.kklochko.jpa_hospital_example.config.factories.LoadDataBaseConfigFromEnvFile
import space.kklochko.jpa_hospital_example.config.models.DataBaseConfig
import space.kklochko.jpa_hospital_example.db.factories.DataBaseConnection
import space.kklochko.jpa_hospital_example.db.factories.EntityManagerConnection
import space.kklochko.jpa_hospital_example.models.Department
import space.kklochko.spring_rest_example.config.factories.LoadDataBaseConfigFromEnvFile
import space.kklochko.spring_rest_example.config.models.DataBaseConfig
import space.kklochko.spring_rest_example.db.factories.DataBaseConnection
import space.kklochko.spring_rest_example.db.factories.EntityManagerConnection
import space.kklochko.spring_rest_example.models.Department
import spock.lang.Shared
import spock.lang.Specification
import spock.lang.Stepwise
@@ -1,12 +1,12 @@
package space.kklochko.jpa_hospital_example.db.repositories
package space.kklochko.spring_rest_example.db.repositories
import groovy.sql.Sql
import jakarta.persistence.EntityManager
import space.kklochko.jpa_hospital_example.config.factories.LoadDataBaseConfigFromEnvFile
import space.kklochko.jpa_hospital_example.config.models.DataBaseConfig
import space.kklochko.jpa_hospital_example.db.factories.DataBaseConnection
import space.kklochko.jpa_hospital_example.db.factories.EntityManagerConnection
import space.kklochko.jpa_hospital_example.models.Indicator
import space.kklochko.spring_rest_example.config.factories.LoadDataBaseConfigFromEnvFile
import space.kklochko.spring_rest_example.config.models.DataBaseConfig
import space.kklochko.spring_rest_example.db.factories.DataBaseConnection
import space.kklochko.spring_rest_example.db.factories.EntityManagerConnection
import space.kklochko.spring_rest_example.models.Indicator
import spock.lang.Shared
import spock.lang.Specification
import spock.lang.Stepwise
@@ -1,13 +1,13 @@
package space.kklochko.jpa_hospital_example.db.repositories
package space.kklochko.spring_rest_example.db.repositories
import groovy.sql.Sql
import jakarta.persistence.EntityManager
import org.junit.Ignore
import space.kklochko.jpa_hospital_example.config.factories.LoadDataBaseConfigFromEnvFile
import space.kklochko.jpa_hospital_example.config.models.DataBaseConfig
import space.kklochko.jpa_hospital_example.db.factories.DataBaseConnection
import space.kklochko.jpa_hospital_example.db.factories.EntityManagerConnection
import space.kklochko.jpa_hospital_example.models.Patient
import space.kklochko.spring_rest_example.config.factories.LoadDataBaseConfigFromEnvFile
import space.kklochko.spring_rest_example.config.models.DataBaseConfig
import space.kklochko.spring_rest_example.db.factories.DataBaseConnection
import space.kklochko.spring_rest_example.db.factories.EntityManagerConnection
import space.kklochko.spring_rest_example.models.Patient
import spock.lang.Shared
import spock.lang.Specification
import spock.lang.Stepwise