From 1336c0c930bea9c1f40b5197e08e38768852b83b Mon Sep 17 00:00:00 2001 From: Simon Schneider <10846939+raynigon@users.noreply.github.com> Date: Sun, 3 Apr 2022 21:20:57 +0200 Subject: [PATCH] Add more tests --- .../MultiplyConverterSpec.groovy | 68 ++++++++++++++++++- 1 file changed, 67 insertions(+), 1 deletion(-) diff --git a/unit-api-core/src/test/groovy/com/raynigon/unit_api/core/function/unitconverter/MultiplyConverterSpec.groovy b/unit-api-core/src/test/groovy/com/raynigon/unit_api/core/function/unitconverter/MultiplyConverterSpec.groovy index 0f4fc831..4d2bfb5f 100644 --- a/unit-api-core/src/test/groovy/com/raynigon/unit_api/core/function/unitconverter/MultiplyConverterSpec.groovy +++ b/unit-api-core/src/test/groovy/com/raynigon/unit_api/core/function/unitconverter/MultiplyConverterSpec.groovy @@ -6,7 +6,73 @@ import spock.lang.Specification class MultiplyConverterSpec extends Specification { @Ignore - def 'test'() { + def 'ofRational - RationalNumber'() { + expect: + false + } + + @Ignore + def 'ofRational - long'() { + expect: + false + } + + @Ignore + def 'ofRational - big integer'() { + expect: + false + } + + @Ignore + def 'of - number'() { + expect: + false + } + + @Ignore + def 'of - double'() { + expect: + false + } + + @Ignore + def 'ofPrefix'() { + expect: + false + } + + @Ignore + def 'ofPiExponent'() { + expect: + false + } + + @Ignore + def 'ofExponent'() { + expect: + false + } + + @Ignore + def 'ofTenExponent'() { + expect: + false + } + + @Ignore + def 'identity'() { + expect: + false + } + + @Ignore + def 'isLinear'() { + expect: + false + } + + @Ignore + def 'getFactor'() { expect: false }