Skip to content

Commit 1336c0c

Browse files
committed
Add more tests
1 parent 061d331 commit 1336c0c

File tree

1 file changed

+67
-1
lines changed

1 file changed

+67
-1
lines changed

unit-api-core/src/test/groovy/com/raynigon/unit_api/core/function/unitconverter/MultiplyConverterSpec.groovy

Lines changed: 67 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,73 @@ import spock.lang.Specification
66
class MultiplyConverterSpec extends Specification {
77

88
@Ignore
9-
def 'test'() {
9+
def 'ofRational - RationalNumber'() {
10+
expect:
11+
false
12+
}
13+
14+
@Ignore
15+
def 'ofRational - long'() {
16+
expect:
17+
false
18+
}
19+
20+
@Ignore
21+
def 'ofRational - big integer'() {
22+
expect:
23+
false
24+
}
25+
26+
@Ignore
27+
def 'of - number'() {
28+
expect:
29+
false
30+
}
31+
32+
@Ignore
33+
def 'of - double'() {
34+
expect:
35+
false
36+
}
37+
38+
@Ignore
39+
def 'ofPrefix'() {
40+
expect:
41+
false
42+
}
43+
44+
@Ignore
45+
def 'ofPiExponent'() {
46+
expect:
47+
false
48+
}
49+
50+
@Ignore
51+
def 'ofExponent'() {
52+
expect:
53+
false
54+
}
55+
56+
@Ignore
57+
def 'ofTenExponent'() {
58+
expect:
59+
false
60+
}
61+
62+
@Ignore
63+
def 'identity'() {
64+
expect:
65+
false
66+
}
67+
68+
@Ignore
69+
def 'isLinear'() {
70+
expect:
71+
false
72+
}
73+
74+
@Ignore
75+
def 'getFactor'() {
1076
expect:
1177
false
1278
}

0 commit comments

Comments
 (0)