File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
src/test/java/javax/money Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,13 @@ This is the API module of JSR 354 licenced under
12
12
See also:
13
13
http://javamoney.java.net
14
14
15
+ Release Notes
16
+ -------------
17
+
18
+ - * 1.0* API as defined by JSR 354 Spec.
19
+ - * 1.0.1* API as defined by JSR 354 Spec (Fix: building Java 7 API with Java 7)
20
+
21
+
15
22
[ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/javax.money/money-api/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/javax.money/money-api )
16
23
[ ![ Build Status] ( https://api.travis-ci.org/JavaMoney/jsr354-api.png?branch=master )] ( https://travis-ci.org/JavaMoney/jsr354-api )
17
24
[ ![ Coverage Status] ( https://coveralls.io/repos/JavaMoney/jsr354-api/badge.svg?branch=master )] ( https://coveralls.io/r/JavaMoney/jsr354-api?branch=master )
Original file line number Diff line number Diff line change 15
15
<artifactId >money-api</artifactId >
16
16
<packaging >bundle</packaging >
17
17
18
- <version >1.1-SNAPSHOT </version >
18
+ <version >1.0.1 </version >
19
19
<name >JSR 354 (Money and Currency API)</name >
20
20
<url >http://java.net/projects/javamoney</url >
21
21
<inceptionYear >2012</inceptionYear >
Original file line number Diff line number Diff line change 10
10
11
11
import org .testng .annotations .Test ;
12
12
13
+ import javax .money .convert .CurrencyConversion ;
14
+ import javax .money .convert .ExchangeRate ;
15
+ import javax .money .convert .ExchangeRateProvider ;
16
+ import javax .money .convert .MonetaryConversions ;
17
+ import java .time .LocalDate ;
18
+ import java .util .Collection ;
13
19
import java .util .List ;
20
+ import java .util .Locale ;
14
21
15
22
import static org .testng .Assert .*;
16
23
20
27
@ SuppressWarnings ({"unchecked" , "rawtypes" })
21
28
public class AbstractQueryTest {
22
29
30
+
23
31
private AbstractQueryBuilder <AbstractQueryBuilder , AbstractQuery > createBuilder () {
24
32
return new AbstractQueryBuilder () {
25
33
@ Override
You can’t perform that action at this time.
0 commit comments