Skip to content
Snippets Groups Projects
Commit 6b40ada2 authored by Goik Martin's avatar Goik Martin
Browse files

Fraction and interest basic exercises

parent ba33ebdf
No related branches found
No related tags found
No related merge requests found
package de.hdm_stuttgart.de.sd1.fraction;
package de.hdm_stuttgart.mi.sd1.fraction;
/**
* Playing with fraction objects, producing some output.
......
package de.hdm_stuttgart.de.sd1.fraction;
package de.hdm_stuttgart.mi.sd1.fraction;
public class Fraction {
......
package de.hdm_stuttgart.de.sd1.fraction;
package de.hdm_stuttgart.mi.sd1.fraction;
import junit.framework.Test;
import junit.framework.TestCase;
......@@ -7,29 +7,19 @@ import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AppTest extends TestCase {
/**
* Create the test case
*
* @param testName
* name of the test case
*/
public AppTest(String testName) {
super(testName);
}
public class FractionTest extends TestCase {
/**
* @return the suite of tests being tested
*/
public static Test suite() {
return new TestSuite(AppTest.class);
}
final TestSuite testsuite = new TestSuite("Testing Fractions (sum + product)");
testsuite.addTestSuite(FractionTest.class);
return testsuite; }
/**
* Rigourous Test :-)
* Sums and products of fractions
*/
public void testApp() {
// Input
final Fraction
twoThird = new Fraction(2, 3), // Construct a fraction object (2/3)
......@@ -41,11 +31,7 @@ public class AppTest extends TestCase {
product = twoThird.mult(threeSeven); // (2/3) * (3/7)
assertTrue(Math.abs(sum.getValue() - 23./21) < 1.E-15); // Mind limited computational accuracy!
assertTrue(Math.abs(sum.getValue() - 2./7) < 1.E-15);
assertTrue(Math.abs(product.getValue() - 2./7) < 1.E-15);
System.out.println("(2/3) + (3/7) = (23/21) = " + sum.getValue());
System.out.println("(2/3) * (3/7) = (2/7) = " + product.getValue());
assertTrue(true);
}
}
/.settings
/target
/.classpath
/.project
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.hdm-stuttgart.de.sd1</groupId>
<artifactId>interest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>V1</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javadocDestdir>~/tmp</javadocDestdir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<linksource>true</linksource>
<!-- Setting destDir interferes with taglet class -->
<additionalJOptions>
<additionalJOption>-d ${javadocDestdir}</additionalJOption>
</additionalJOptions>
<taglets>
<taglet>
<tagletClass>de.hdm_stuttgart.de.sd1.taglet.HtmlExtensionTaglet</tagletClass>
</taglet>
</taglets>
<tagletpath>../../../../../../../ws/eclipse/HtmlExtensionTaglet/target/classes</tagletpath>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include> **/*.properties</include>
</includes>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
package de.hdm_stuttgart.mi.sd1.interest;
/**
* Dealing with account balances and interest calculations.
*
*/
public class Account {
private static double // All accounts share a common interest rate. Thus
interestRate = 1.5; // this parameter is being declared as "static".
private double balance; // Balances apply per-account thus in contrast
// "static" must not appear here.
/**
* Create a new account having a balance of 0.
*/
public Account() { // Default Constructor. This one has no parameters and
setBalance(0); // thus creates an initially empty account.
}
/**
* Create a new account having of given initial balance.
*
* @param balance
* The account's initial balance.
*/
public Account(double balance) { // Non-default constructor creating an account
setBalance(balance); // with (possibly) non-zero balance.
}
/**
* @return The account's current balance.
*/
public double getBalance() {
return balance;
}
/**
* Setting a (possibly) new balance.
*
* @param balance
* The desired new balance value. If greater than 10000
* a warning message is being issued and the accounts current value will be retained.
*/
public void setBalance(double balance) {
if (balance <= 10000) {
this.balance = balance; // "this" required to resolve name shadowing conflict of formal
// parameter name "double stand" with respect to Account.stand .
} else {
System.out.println("Balance" + balance + " exceeds " + 10000);
}
}
/**
* Setting the interest rate common to all accounts.
*
* @param z
* the desired (global) interest rate.
*/
public static void setInterestRate(double z) { // Scope of variable "z" limited is just the next block {...},
interestRate = z; // in contrast interestRate has class scope.
}
public static double getInterestRate() {
return interestRate;
}
/**
* <p>Adding the annual interest to the current balance according to:</p>
* <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<msub>
<mi>balance</mi>
<mi>1</mi>
</msub>
<mo>=</mo>
<mrow>
<mi>balance</mi>
<mrow>
<mo>(</mo>
<mrow>
<mi>1</mi>
<mo>+</mo>
<mfrac>
<mi>interestRate</mi>
<mi>100</mi>
</mfrac>
</mrow>
<mo>)</mo>
</mrow>
</mrow>
</mrow>
</math>
*/
public void applyInterest() {
balance = balance * (1 + interestRate / 100);
}
/**
* <p>Adding the interest of several years to the current balance according to:</p>
* <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<msub>
<mi>balance</mi>
<mi>years</mi>
</msub>
<mo>=</mo>
<mrow>
<mi>balance</mi>
<msup>
<mrow>
<mo>(</mo>
<mrow>
<mi>1</mi>
<mo>+</mo>
<mfrac>
<mi>interestRate</mi>
<mi>100</mi>
</mfrac>
</mrow>
<mo>)</mo>
</mrow>
<mi>years</mi>
</msup>
</mrow>
</mrow>
</math>
*
* @param years
* the given time period.
*/
public void applyInterest(int years) {
balance = balance * Math.pow((1 + interestRate / 100), years) ; // interest factor raised to the power of years, see javadoc.
}
/**
* Calculate the expected annual interest without changing the account's balance.
*
* @return
* Annual interest to be expected
*/
public double getYearlyInterest() {
return balance * interestRate / 100;
}
}
\ No newline at end of file
package de.hdm_stuttgart.mi.sd1.interest;
/**
* Testing the simple account
*
*/
public class App {
public static void main(String[] args) {
Account account = new Account(20.); // Create a new instance of class Account
account.setBalance(100.); // set account's balance
System.out.println("Balance:" + account.getBalance()); // Display account's balance
Account.setInterestRate(1.0); // Setting the global interest rate
account.applyInterest(); // raise balance by one year's interest.
account.applyInterest(3); // raise balance by three years compounded interest
System.out.println("balance:" + account.getBalance()); // Display account's balance again
}
}
package de.hdm_stuttgart.mi.sd1.interest;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Unit test for simple App.
*/
public class AccountTest extends TestCase {
/**
* @return the suite of tests being tested
*/
public static Test suite() {
final TestSuite testsuite = new TestSuite("Testing accounts");
testsuite.addTestSuite(AccountTest.class);
return testsuite;
}
/**
* Testing account balance and interest calculatios
*/
public void testApp() {
Account account = new Account(20.); // Create a new instance of class Account
account.setBalance(100.); // set account's balance
Account.setInterestRate(1.0); // Setting the global interest rate
account.applyInterest(); // raise balance by one year's interest.
account.applyInterest(3); // raise balance by three years compounded interest
assertTrue(account.getBalance() == 104.06040100000001);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment