File tree Expand file tree Collapse file tree 4 files changed +7
-323
lines changed
src/main/java/org/javamoney/text/tck Expand file tree Collapse file tree 4 files changed +7
-323
lines changed Original file line number Diff line number Diff line change 4545 <!-- ************ TCK Setup ****************** -->
4646
4747 <!-- 1) JSR API version to be used. -->
48- <api .version>1.0-RC3 </api .version>
48+ <api .version>1.0-SNAPSHOT </api .version>
4949 <api .artifactId>money-api</api .artifactId>
5050
5151 <!-- 2) TCK version to be used. -->
5454 <!-- 3) Your implementation artifact to be tested. -->
5555 <impl .groupId>org.javamoney</impl .groupId>
5656 <impl .artifactId>moneta</impl .artifactId>
57- <impl .version>1.0-RC3 </impl .version>
57+ <impl .version>1.0-SNAPSHOT </impl .version>
5858 <impl .packageType>jar</impl .packageType>
5959
6060 <!-- ************ Other settings, Should normally not be changed. ************ -->
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1515 */
1616package org .javamoney .text .tck ;
1717
18+ import org .javamoney .moneta .FastMoney ;
19+ import org .javamoney .moneta .Money ;
20+ import org .javamoney .moneta .internal .JDKCurrencyAdapter ;
1821import org .javamoney .tck .JSR354TestConfiguration ;
1922
2023import javax .money .MonetaryOperator ;
@@ -42,7 +45,7 @@ public final class TCKTestSetup implements JSR354TestConfiguration {
4245 @ Override
4346 public Collection <Class > getAmountClasses () {
4447 return Arrays
45- .asList (new Class []{MyMoney .class });
48+ .asList (new Class []{Money . class , FastMoney .class });
4649 }
4750
4851 /**
@@ -55,7 +58,7 @@ public Collection<Class> getAmountClasses() {
5558 public Collection <Class > getCurrencyClasses () {
5659 try {
5760 return Arrays
58- .asList (new Class []{MyCurrency .class });
61+ .asList (new Class []{JDKCurrencyAdapter .class });
5962 } catch (Exception e ) {
6063 e .printStackTrace ();
6164 throw new RuntimeException ("Currency class not lodable: org.javamoney.moneta.internal.format.JDKCurrencyAdapter" );
You can’t perform that action at this time.
0 commit comments