remove extra files
This commit is contained in:
parent
4aa8633c43
commit
2299a66472
|
@ -1 +0,0 @@
|
||||||
Hello World from ABC.txt!!!
|
|
|
@ -1,4 +0,0 @@
|
||||||
1,2,3
|
|
||||||
-10, 30, 20
|
|
||||||
15, -5, 10
|
|
||||||
-5, -10, -15
|
|
|
|
@ -1 +0,0 @@
|
||||||
Hello World from aaa.txt!!!
|
|
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
|
|
||||||
|
|
||||||
<util:properties id="props">
|
|
||||||
<prop key="adder">
|
|
||||||
4
|
|
||||||
</prop>
|
|
||||||
</util:properties>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
author,title
|
|
||||||
Dan Simmons,Hyperion
|
|
||||||
Douglas Adams,The Hitchhiker's Guide to the Galaxy
|
|
|
|
@ -1,5 +0,0 @@
|
||||||
ColA,ColB,ColC,ColD
|
|
||||||
A,B,B,B
|
|
||||||
C,D,W,W
|
|
||||||
G,G,E,E
|
|
||||||
G,F,Q,Q
|
|
|
|
@ -1,5 +0,0 @@
|
||||||
name,age
|
|
||||||
adam,1000
|
|
||||||
martin,27
|
|
||||||
gigi,41
|
|
||||||
seraphine,30
|
|
|
|
@ -1,5 +0,0 @@
|
||||||
ColA,ColB
|
|
||||||
A,B
|
|
||||||
C,D
|
|
||||||
G,G
|
|
||||||
G,F
|
|
|
|
@ -1,8 +0,0 @@
|
||||||
FROM alpine:3.6
|
|
||||||
|
|
||||||
RUN apk --update add git openssh && \
|
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
|
||||||
rm /var/cache/apk/*
|
|
||||||
|
|
||||||
ENTRYPOINT ["git"]
|
|
||||||
CMD ["--help"]
|
|
|
@ -1,43 +0,0 @@
|
||||||
CREATE TABLE employee(
|
|
||||||
id int NOT NULL PRIMARY KEY auto_increment,
|
|
||||||
firstname varchar(255),
|
|
||||||
lastname varchar(255),
|
|
||||||
salary double,
|
|
||||||
hireddate date
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE TABLE email(
|
|
||||||
id int NOT NULL PRIMARY KEY auto_increment,
|
|
||||||
employeeid int,
|
|
||||||
address varchar(255)
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE TABLE employee_legacy(
|
|
||||||
id int NOT NULL PRIMARY KEY auto_increment,
|
|
||||||
first_name varchar(255),
|
|
||||||
last_name varchar(255),
|
|
||||||
salary double,
|
|
||||||
hired_date date
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
INSERT INTO employee (firstname,lastname,salary,hireddate) VALUES ('John', 'Doe', 10000.10, to_date('01-01-2001','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee (firstname,lastname,salary,hireddate) VALUES ('Kevin', 'Smith', 20000.20, to_date('02-02-2002','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee (firstname,lastname,salary,hireddate) VALUES ('Kim', 'Smith', 30000.30, to_date('03-03-2003','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee (firstname,lastname,salary,hireddate) VALUES ('Stephen', 'Torvalds', 40000.40, to_date('04-04-2004','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee (firstname,lastname,salary,hireddate) VALUES ('Christian', 'Reynolds', 50000.50, to_date('05-05-2005','dd-mm-yyyy'));
|
|
||||||
|
|
||||||
INSERT INTO employee_legacy (first_name,last_name,salary,hired_date) VALUES ('John', 'Doe', 10000.10, to_date('01-01-2001','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee_legacy (first_name,last_name,salary,hired_date) VALUES ('Kevin', 'Smith', 20000.20, to_date('02-02-2002','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee_legacy (first_name,last_name,salary,hired_date) VALUES ('Kim', 'Smith', 30000.30, to_date('03-03-2003','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee_legacy (first_name,last_name,salary,hired_date) VALUES ('Stephen', 'Torvalds', 40000.40, to_date('04-04-2004','dd-mm-yyyy'));
|
|
||||||
INSERT INTO employee_legacy (first_name,last_name,salary,hired_date) VALUES ('Christian', 'Reynolds', 50000.50, to_date('05-05-2005','dd-mm-yyyy'));
|
|
||||||
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (1, 'john@baeldung.com');
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (1, 'john@gmail.com');
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (2, 'kevin@baeldung.com');
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (3, 'kim@baeldung.com');
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (3, 'kim@gmail.com');
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (3, 'kim@outlook.com');
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (4, 'stephen@baeldung.com');
|
|
||||||
INSERT INTO email (employeeid,address) VALUES (5, 'christian@gmail.com');
|
|
|
@ -1 +0,0 @@
|
||||||
Hello World from fileTest.txt!!!
|
|
|
@ -1 +0,0 @@
|
||||||
This file is merely for testing.
|
|
|
@ -1 +0,0 @@
|
||||||
Should be copied to OutputStream.
|
|
|
@ -1,2 +0,0 @@
|
||||||
line 1
|
|
||||||
a second line
|
|
|
@ -1,13 +0,0 @@
|
||||||
|
|
||||||
Meta:
|
|
||||||
|
|
||||||
Narrative:
|
|
||||||
As a user
|
|
||||||
I want to look up a valid user's profile on github
|
|
||||||
So that I can know the login payload should be the same as username
|
|
||||||
|
|
||||||
Scenario: Github user's profile should have a login payload same as username
|
|
||||||
|
|
||||||
Given github user profile api
|
|
||||||
When looking for eugenp via the api
|
|
||||||
Then github's response contains a 'login' payload same as eugenp
|
|
|
@ -1,11 +0,0 @@
|
||||||
Meta:
|
|
||||||
|
|
||||||
Narrative:
|
|
||||||
As user
|
|
||||||
I want to add a number
|
|
||||||
So that I can have the sum
|
|
||||||
|
|
||||||
Scenario: A user can submit a number to adder and get current sum
|
|
||||||
Given a number
|
|
||||||
When I submit another number 5 to adder
|
|
||||||
Then I get a sum of the numbers
|
|
|
@ -1,3 +0,0 @@
|
||||||
firstName: "John"
|
|
||||||
lastName: "Doe"
|
|
||||||
age: 20
|
|
|
@ -1,7 +0,0 @@
|
||||||
firstName: "John"
|
|
||||||
lastName: "Doe"
|
|
||||||
age: 31
|
|
||||||
contactDetails:
|
|
||||||
- { type: "mobile", number: 123456789}
|
|
||||||
- { type: "landline", number: 456786868}
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
firstName: "John"
|
|
||||||
lastName: "Doe"
|
|
||||||
age: 31
|
|
||||||
contactDetails:
|
|
||||||
- type: "mobile"
|
|
||||||
number: 123456789
|
|
||||||
- type: "landline"
|
|
||||||
number: 456786868
|
|
||||||
homeAddress:
|
|
||||||
line: "Xyz, DEF Street"
|
|
||||||
city: "City Y"
|
|
||||||
state: "State Y"
|
|
||||||
zip: 345657
|
|
|
@ -1,6 +0,0 @@
|
||||||
firstName: "John"
|
|
||||||
lastName: "Doe"
|
|
||||||
age: 31
|
|
||||||
contactDetails:
|
|
||||||
- !contact { type: "mobile", number: 123456789}
|
|
||||||
- !contact { type: "landline", number: 456786868}
|
|
|
@ -1,4 +0,0 @@
|
||||||
!!com.baeldung.snakeyaml.Customer
|
|
||||||
firstName: "John"
|
|
||||||
lastName: "Doe"
|
|
||||||
age: 20
|
|
|
@ -1,8 +0,0 @@
|
||||||
---
|
|
||||||
firstName: "John"
|
|
||||||
lastName: "Doe"
|
|
||||||
age: 20
|
|
||||||
---
|
|
||||||
firstName: "Jack"
|
|
||||||
lastName: "Jones"
|
|
||||||
age: 25
|
|
Loading…
Reference in New Issue