fix master branch

This commit is contained in:
alexandre.iwanesko@gmail.com 2021-12-20 03:08:49 +01:00
parent 85ff1cdf51
commit caa4b2a90c
8 changed files with 11 additions and 76 deletions

View File

@ -1,9 +1,5 @@
server.port 9002
server.port=9002
#Configurations H2
spring.jpa.show-sql=true
spring.h2.console.enabled=true
#défini l'encodage pour data.sql
spring.datasource.sql-script-encoding=UTF-8

View File

@ -1,16 +0,0 @@
package com.mcommandes;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class McommandesApplicationTests {
@Test
public void contextLoads() {
}
}

View File

@ -1,16 +0,0 @@
package com.mpayement;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MpayementApplicationTests {
@Test
public void contextLoads() {
}
}

View File

@ -1,9 +1,6 @@
server.port 9003
server.port=9003
#Configurations H2
spring.jpa.show-sql=true
spring.h2.console.enabled=true
#défini l'encodage pour data.sql
spring.datasource.sql-script-encoding=UTF-8

View File

@ -1,16 +0,0 @@
package com.mpaiement;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MpaiementApplicationTests {
@Test
public void contextLoads() {
}
}

View File

@ -1,9 +1,7 @@
server.port 9001
server.port=9001
#Configurations H2
spring.jpa.show-sql=true
spring.h2.console.enabled=true
#défini l'encodage pour data.sql
spring.datasource.sql-script-encoding=UTF-8

View File

@ -0,0 +1,8 @@
CREATE TABLE product
(
id INT PRIMARY KEY,
titre VARCHAR(255) NOT NULL,
description VARCHAR(255) NOT NULL,
image VARCHAR(255) NOT NULL,
prix INT NOT NULL
);

View File

@ -1,16 +0,0 @@
package com.mproduits;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MproduitsApplicationTests {
@Test
public void contextLoads() {
}
}