+
diff --git a/src/postman_requests/DB Test Data.json b/src/postman_requests/DB Test Data.json
new file mode 100644
index 0000000..3f26b90
--- /dev/null
+++ b/src/postman_requests/DB Test Data.json
@@ -0,0 +1 @@
+[{"id":19,"name":"Maria Camps","job":"Administratiu","salary":25000.0},{"id":17,"name":"Joan Gordi","job":"Director de projectes","salary":50000.0},{"id":18,"name":"Gerard Puig","job":"Programador Mid-Level","salary":29000.0},{"id":21,"name":"Pere Masnou","job":"Administratiu","salary":25000.0},{"id":22,"name":"Laura Klaus","job":"Programador Senior","salary":35000.0},{"id":20,"name":"Anaïs Iglesias","job":"Programador Mid-Level","salary":29000.0},{"id":23,"name":"Jhon Smith","job":"Administratiu","salary":25000.0},{"id":24,"name":"Ramón Dalmau","job":"Programador Mid-Level","salary":29000.0},{"id":25,"name":"Joana Gracia","job":"Programador Junior","salary":21000.0},{"id":26,"name":"Quique Mota","job":"Administratiu","salary":25000.0},{"id":27,"name":"Kevin Lohan","job":"Director de projectes","salary":50000.0}]
\ No newline at end of file
diff --git a/src/postman_requests/M13-Http-Service.postman_collection.json b/src/postman_requests/M13-Http-Service.postman_collection.json
new file mode 100644
index 0000000..4d1b0f9
--- /dev/null
+++ b/src/postman_requests/M13-Http-Service.postman_collection.json
@@ -0,0 +1,124 @@
+{
+ "info": {
+ "_postman_id": "01c27239-82b2-4c05-8447-d7546da1aba9",
+ "name": "M13-Http-Service",
+ "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
+ },
+ "item": [
+ {
+ "name": "Get All",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "{{ip}}{{port}}/EmployeeList",
+ "host": [
+ "{{ip}}{{port}}"
+ ],
+ "path": [
+ "EmployeeList"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Get ByID",
+ "request": {
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "{{ip}}{{port}}/EmployeeList/2",
+ "host": [
+ "{{ip}}{{port}}"
+ ],
+ "path": [
+ "EmployeeList",
+ "2"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Create Employee",
+ "request": {
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "raw",
+ "raw": "{\n \"name\":\"Laura\",\n \"job\":\"Programador_Senior\"\n}",
+ "options": {
+ "raw": {
+ "language": "json"
+ }
+ }
+ },
+ "url": {
+ "raw": "{{ip}}{{port}}/EmployeeList",
+ "host": [
+ "{{ip}}{{port}}"
+ ],
+ "path": [
+ "EmployeeList"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Update Employee",
+ "request": {
+ "method": "PUT",
+ "header": [],
+ "body": {
+ "mode": "raw",
+ "raw": "{\n \"id\": 2,\n \"name\":\"Gerard\",\n \"jobj\":\"Programador_Mid\"\n}",
+ "options": {
+ "raw": {
+ "language": "json"
+ }
+ }
+ },
+ "url": {
+ "raw": "{{ip}}{{port}}/EmployeeList/2",
+ "host": [
+ "{{ip}}{{port}}"
+ ],
+ "path": [
+ "EmployeeList",
+ "2"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Delete",
+ "request": {
+ "method": "DELETE",
+ "header": [],
+ "body": {
+ "mode": "raw",
+ "raw": "",
+ "options": {
+ "raw": {
+ "language": "json"
+ }
+ }
+ },
+ "url": {
+ "raw": "{{ip}}{{port}}/EmployeeList/0",
+ "host": [
+ "{{ip}}{{port}}"
+ ],
+ "path": [
+ "EmployeeList",
+ "0"
+ ]
+ }
+ },
+ "response": []
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/postman_requests/local.postman_environment.json b/src/postman_requests/local.postman_environment.json
new file mode 100644
index 0000000..47461c9
--- /dev/null
+++ b/src/postman_requests/local.postman_environment.json
@@ -0,0 +1,19 @@
+{
+ "id": "ea2123f8-e7a8-4cf6-86cd-02a50870eba3",
+ "name": "local",
+ "values": [
+ {
+ "key": "ip",
+ "value": "localhost",
+ "enabled": true
+ },
+ {
+ "key": "port",
+ "value": ":8080",
+ "enabled": true
+ }
+ ],
+ "_postman_variable_scope": "environment",
+ "_postman_exported_at": "2021-03-25T19:10:26.160Z",
+ "_postman_exported_using": "Postman/8.0.7"
+}
\ No newline at end of file
diff --git a/src/test/resources/application.properties b/src/test/resources/application.properties
new file mode 100644
index 0000000..7c52633
--- /dev/null
+++ b/src/test/resources/application.properties
@@ -0,0 +1,14 @@
+spring.datasource.url=jdbc:h2:mem:testdb
+spring.datasource.driverClassName=org.h2.Driver
+spring.datasource.username=sa
+spring.datasource.password=password
+
+spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
+
+spring.jpa.hibernate.ddl-auto=create
+
+#[TEST] This comand will populate your database with the registers in data.sql file.
+#If the registers are deleted they will be recreated when reload this app.
+spring.datasource.initialization-mode=always
+
+
diff --git a/system.properties b/system.properties
new file mode 100644
index 0000000..180a273
--- /dev/null
+++ b/system.properties
@@ -0,0 +1 @@
+java.runtime.version=11
\ No newline at end of file