Skip to content
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
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions RefactoringAssignment.iml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,15 @@
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module-library" scope="TEST">
<library name="JUnit4">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
</component>
</module>
5 changes: 4 additions & 1 deletion src/InsuranceCalculator.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
public class InsuranceCalculator {

private InsuranceStrategy strategy;

public double calculateInsurance(double income) {
if (income <= 10000) {
return income*0.365;
Expand All @@ -8,7 +10,8 @@ public double calculateInsurance(double income) {
} else if (income <= 60000) {
return (income-30000)*0.1+76500;
} else {
return (income-60000)*0.02+105600;
strategy = new InsuranceStrategyVeryHigh();
return InsuranceStrategy.calculateInsuranceVeryHigh(income);
}
}

Expand Down
17 changes: 17 additions & 0 deletions src/InsuranceStrategy.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
public abstract class InsuranceStrategy {
public static double calculateInsuranceVeryHigh(double income) {
return (income - InsuranceStrategy.getAdjustment()) * InsuranceStrategy.getWeight() + InsuranceStrategy.getConstant();
}

public static int getConstant() {
return 105600;
}

public static double getWeight() {
return 0.02;
}

public static int getAdjustment() {
return 60000;
}
}
2 changes: 2 additions & 0 deletions src/InsuranceStrategyHigh.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
public class InsuranceStrategyHigh extends InsuranceStrategy {
}
2 changes: 2 additions & 0 deletions src/InsuranceStrategyLow.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
public class InsuranceStrategyLow extends InsuranceStrategy {
}
2 changes: 2 additions & 0 deletions src/InsuranceStrategyMedium.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
public class InsuranceStrategyMedium extends InsuranceStrategy {
}
7 changes: 7 additions & 0 deletions src/InsuranceStrategyVeryHigh.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
public class InsuranceStrategyVeryHigh extends InsuranceStrategy {

public InsuranceStrategyVeryHigh() {

}

}
Empty file removed test/EMPTY
Empty file.
29 changes: 29 additions & 0 deletions test/InsuranceCalculatorTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import org.junit.Test;

import static org.junit.Assert.*;

public class InsuranceCalculatorTest {
@Test
public void low() {
assertEquals(1825, insuranceFor(5000), 0.01);
}

@Test
public void medium() {
assertEquals(38600, insuranceFor(25000), 0.01);
}

@Test
public void high() {
assertEquals(78500, insuranceFor(50000), 0.01);
}

@Test
public void veryHigh() {
assertEquals(106400, insuranceFor(100_000), 0.01);
}

private double insuranceFor(double income) {
return new InsuranceCalculator().calculateInsurance(income);
}
}