Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fb chill with trois dame #218

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Teaching-HEIGVD-RES-2021-Chill
Submodule Teaching-HEIGVD-RES-2021-Chill added at 5e1275
21 changes: 21 additions & 0 deletions src/main/java/ch/heigvd/res/chill/domain/AxelVallon/TroisDame.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package ch.heigvd.res.chill.domain.AxelVallon;

import ch.heigvd.res.chill.domain.IProduct;

import java.math.BigDecimal;

public class TroisDame implements IProduct {

public final static String NAME = "Trois dame";
public final static BigDecimal PRICE = new BigDecimal(2.0);

@Override
public String getName() {
return NAME;
}

@Override
public BigDecimal getPrice() {
return PRICE;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,5 @@

@Data
public class GreetingsRequest implements IMessage {

private final String text;

}
11 changes: 11 additions & 0 deletions src/main/main.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/java" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package ch.heigvd.res.chill.domain.AxelVallon;

import ch.heigvd.res.chill.domain.AxelVallon.TroisDame;
import ch.heigvd.res.chill.domain.Bartender;
import ch.heigvd.res.chill.protocol.OrderRequest;
import ch.heigvd.res.chill.protocol.OrderResponse;
import org.junit.jupiter.api.Test;

import java.math.BigDecimal;

import static org.junit.jupiter.api.Assertions.assertEquals;

class TroisDameTest {

@Test
void thePriceAndNameForPunkIPAShouldBeCorrect() {
TroisDame beer = new TroisDame();
assertEquals(beer.getName(), TroisDame.NAME);
assertEquals(beer.getPrice(), TroisDame.PRICE);
}

@Test
void aBartenderShouldAcceptAnOrderForPunkIPA() {
Bartender jane = new Bartender();
String productName = "ch.heigvd.res.chill.domain.AxelVallon.TroisDame";
OrderRequest request = new OrderRequest(3, productName);
OrderResponse response = jane.order(request);
BigDecimal expectedTotalPrice = TroisDame.PRICE.multiply(new BigDecimal(3));
assertEquals(expectedTotalPrice, response.getTotalPrice());
}

}
13 changes: 13 additions & 0 deletions src/test/test.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/java" isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="main" />
<orderEntry type="module" module-name="main" />
</component>
</module>