From ccec7f9343a3fe78c19db483233112f18d6e6da8 Mon Sep 17 00:00:00 2001 From: "anthony.cicchetti" Date: Mon, 5 Jun 2017 11:56:12 -0400 Subject: [PATCH] Kotlin - Space Age Complete --- kotlin/grade-school/.idea/workspace.xml | 8 +- .../.gradle/3.5/file-changes/last-build.bin | Bin 0 -> 1 bytes .../.gradle/3.5/taskHistory/taskHistory.lock | Bin 0 -> 17 bytes .../.gradle/buildOutputCleanup/built.bin | 0 .../buildOutputCleanup/cache.properties | 2 + .../buildOutputCleanup/cache.properties.lock | 1 + kotlin/space-age/.idea/compiler.xml | 9 + kotlin/space-age/.idea/gradle.xml | 19 + .../libraries/Gradle__junit_junit_4_12.xml | 11 + ...Gradle__org_hamcrest_hamcrest_core_1_3.xml | 11 + ...Gradle__org_jetbrains_annotations_13_0.xml | 11 + ...g_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml | 11 + ...org_jetbrains_kotlin_kotlin_test_1_1_1.xml | 11 + ...tbrains_kotlin_kotlin_test_junit_1_1_1.xml | 11 + kotlin/space-age/.idea/misc.xml | 22 + kotlin/space-age/.idea/modules.xml | 10 + .../.idea/modules/space-age_main.iml | 40 + .../.idea/modules/space-age_test.iml | 46 + kotlin/space-age/.idea/workspace.xml | 992 ++++++++++++++++++ kotlin/space-age/README.md | 26 + kotlin/space-age/build.gradle | 28 + .../META-INF/space-age_main.kotlin_module | Bin 0 -> 32 bytes .../build/classes/main/SpaceAge.class | Bin 0 -> 1587 bytes .../build/classes/main/SpaceAgeKt.class | Bin 0 -> 847 bytes .../build/classes/test/SpaceAgeTest.class | Bin 0 -> 2689 bytes .../build/kotlin-build/caches/version.txt | 1 + kotlin/space-age/space-age.iml | 12 + kotlin/space-age/src/main/kotlin/.keep | 0 kotlin/space-age/src/main/kotlin/SpaceAge.kt | 47 + .../space-age/src/test/kotlin/SpaceAgeTest.kt | 85 ++ 30 files changed, 1410 insertions(+), 4 deletions(-) create mode 100644 kotlin/space-age/.gradle/3.5/file-changes/last-build.bin create mode 100644 kotlin/space-age/.gradle/3.5/taskHistory/taskHistory.lock create mode 100644 kotlin/space-age/.gradle/buildOutputCleanup/built.bin create mode 100644 kotlin/space-age/.gradle/buildOutputCleanup/cache.properties create mode 100644 kotlin/space-age/.gradle/buildOutputCleanup/cache.properties.lock create mode 100644 kotlin/space-age/.idea/compiler.xml create mode 100644 kotlin/space-age/.idea/gradle.xml create mode 100644 kotlin/space-age/.idea/libraries/Gradle__junit_junit_4_12.xml create mode 100644 kotlin/space-age/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml create mode 100644 kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml create mode 100644 kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml create mode 100644 kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml create mode 100644 kotlin/space-age/.idea/misc.xml create mode 100644 kotlin/space-age/.idea/modules.xml create mode 100644 kotlin/space-age/.idea/modules/space-age_main.iml create mode 100644 kotlin/space-age/.idea/modules/space-age_test.iml create mode 100644 kotlin/space-age/.idea/workspace.xml create mode 100644 kotlin/space-age/README.md create mode 100644 kotlin/space-age/build.gradle create mode 100644 kotlin/space-age/build/classes/main/META-INF/space-age_main.kotlin_module create mode 100644 kotlin/space-age/build/classes/main/SpaceAge.class create mode 100644 kotlin/space-age/build/classes/main/SpaceAgeKt.class create mode 100644 kotlin/space-age/build/classes/test/SpaceAgeTest.class create mode 100644 kotlin/space-age/build/kotlin-build/caches/version.txt create mode 100644 kotlin/space-age/space-age.iml create mode 100644 kotlin/space-age/src/main/kotlin/.keep create mode 100644 kotlin/space-age/src/main/kotlin/SpaceAge.kt create mode 100644 kotlin/space-age/src/test/kotlin/SpaceAgeTest.kt diff --git a/kotlin/grade-school/.idea/workspace.xml b/kotlin/grade-school/.idea/workspace.xml index c82fabc..cf90c1f 100644 --- a/kotlin/grade-school/.idea/workspace.xml +++ b/kotlin/grade-school/.idea/workspace.xml @@ -35,7 +35,7 @@ - + @@ -484,7 +484,7 @@ - + - + diff --git a/kotlin/space-age/.gradle/3.5/file-changes/last-build.bin b/kotlin/space-age/.gradle/3.5/file-changes/last-build.bin new file mode 100644 index 0000000000000000000000000000000000000000..f76dd238ade08917e6712764a16a22005a50573d GIT binary patch literal 1 IcmZPo000310RR91 literal 0 HcmV?d00001 diff --git a/kotlin/space-age/.gradle/3.5/taskHistory/taskHistory.lock b/kotlin/space-age/.gradle/3.5/taskHistory/taskHistory.lock new file mode 100644 index 0000000000000000000000000000000000000000..d9d8108675967b2e8483c27cc7c88bf253e5b935 GIT binary patch literal 17 TcmZRc8M^m_xmm(11}FdkHZ=rR literal 0 HcmV?d00001 diff --git a/kotlin/space-age/.gradle/buildOutputCleanup/built.bin b/kotlin/space-age/.gradle/buildOutputCleanup/built.bin new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/space-age/.gradle/buildOutputCleanup/cache.properties b/kotlin/space-age/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 0000000..da40f8b --- /dev/null +++ b/kotlin/space-age/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Mon Jun 05 11:37:41 EDT 2017 +gradle.version=3.5 diff --git a/kotlin/space-age/.gradle/buildOutputCleanup/cache.properties.lock b/kotlin/space-age/.gradle/buildOutputCleanup/cache.properties.lock new file mode 100644 index 0000000..40fdece --- /dev/null +++ b/kotlin/space-age/.gradle/buildOutputCleanup/cache.properties.lock @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kotlin/space-age/.idea/compiler.xml b/kotlin/space-age/.idea/compiler.xml new file mode 100644 index 0000000..e6bb30c --- /dev/null +++ b/kotlin/space-age/.idea/compiler.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/gradle.xml b/kotlin/space-age/.idea/gradle.xml new file mode 100644 index 0000000..346dc7e --- /dev/null +++ b/kotlin/space-age/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/libraries/Gradle__junit_junit_4_12.xml b/kotlin/space-age/.idea/libraries/Gradle__junit_junit_4_12.xml new file mode 100644 index 0000000..04c10dd --- /dev/null +++ b/kotlin/space-age/.idea/libraries/Gradle__junit_junit_4_12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/kotlin/space-age/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..8262f72 --- /dev/null +++ b/kotlin/space-age/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml new file mode 100644 index 0000000..4f32fde --- /dev/null +++ b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml new file mode 100644 index 0000000..7b6f562 --- /dev/null +++ b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml new file mode 100644 index 0000000..1720158 --- /dev/null +++ b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml new file mode 100644 index 0000000..21c5d19 --- /dev/null +++ b/kotlin/space-age/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/misc.xml b/kotlin/space-age/.idea/misc.xml new file mode 100644 index 0000000..3e1805e --- /dev/null +++ b/kotlin/space-age/.idea/misc.xml @@ -0,0 +1,22 @@ + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/modules.xml b/kotlin/space-age/.idea/modules.xml new file mode 100644 index 0000000..e949d73 --- /dev/null +++ b/kotlin/space-age/.idea/modules.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/modules/space-age_main.iml b/kotlin/space-age/.idea/modules/space-age_main.iml new file mode 100644 index 0000000..6b54e6d --- /dev/null +++ b/kotlin/space-age/.idea/modules/space-age_main.iml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/modules/space-age_test.iml b/kotlin/space-age/.idea/modules/space-age_test.iml new file mode 100644 index 0000000..302f9e9 --- /dev/null +++ b/kotlin/space-age/.idea/modules/space-age_test.iml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/.idea/workspace.xml b/kotlin/space-age/.idea/workspace.xml new file mode 100644 index 0000000..6120b39 --- /dev/null +++ b/kotlin/space-age/.idea/workspace.xml @@ -0,0 +1,992 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @ignore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1496677058640 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/README.md b/kotlin/space-age/README.md new file mode 100644 index 0000000..589f0de --- /dev/null +++ b/kotlin/space-age/README.md @@ -0,0 +1,26 @@ +# Space Age + +Given an age in seconds, calculate how old someone would be on: + + - Earth: orbital period 365.25 Earth days, or 31557600 seconds + - Mercury: orbital period 0.2408467 Earth years + - Venus: orbital period 0.61519726 Earth years + - Mars: orbital period 1.8808158 Earth years + - Jupiter: orbital period 11.862615 Earth years + - Saturn: orbital period 29.447498 Earth years + - Uranus: orbital period 84.016846 Earth years + - Neptune: orbital period 164.79132 Earth years + +So if you were told someone were 1,000,000,000 seconds old, you should +be able to say that they're 31 Earth-years old. + +If you're wondering why Pluto didn't make the cut, go watch [this +youtube video](http://www.youtube.com/watch?v=Z_2gbGXzFbs). + +## Source + +Partially inspired by Chapter 1 in Chris Pine's online Learn to Program tutorial. [http://pine.fm/LearnToProgram/?Chapter=01](http://pine.fm/LearnToProgram/?Chapter=01) + +## Submitting Incomplete Solutions +It's possible to submit an incomplete solution so you can see how others have completed the exercise. + diff --git a/kotlin/space-age/build.gradle b/kotlin/space-age/build.gradle new file mode 100644 index 0000000..16c36c0 --- /dev/null +++ b/kotlin/space-age/build.gradle @@ -0,0 +1,28 @@ +buildscript { + ext.kotlin_version = '1.1.1' + repositories { + mavenCentral() + } + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +apply plugin: 'kotlin' + +repositories { + mavenCentral() +} + +dependencies { + compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" + + testCompile 'junit:junit:4.12' + testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" +} +test { + testLogging { + exceptionFormat = 'full' + events = ["passed", "failed", "skipped"] + } +} diff --git a/kotlin/space-age/build/classes/main/META-INF/space-age_main.kotlin_module b/kotlin/space-age/build/classes/main/META-INF/space-age_main.kotlin_module new file mode 100644 index 0000000000000000000000000000000000000000..3403119449a1c4f7e623140942db8530f2fa76a0 GIT binary patch literal 32 hcmZQzU|?ooU|@t|HZDFc1|hECg2d!h$MjV15&#&o1Ofm6 literal 0 HcmV?d00001 diff --git a/kotlin/space-age/build/classes/main/SpaceAge.class b/kotlin/space-age/build/classes/main/SpaceAge.class new file mode 100644 index 0000000000000000000000000000000000000000..233ab2f77ce0b8a44215d8ed022a102b3df95317 GIT binary patch literal 1587 zcma)+&2JM&7{;Gj+w1klNj4^s)NR@z5X4pz2lG+Bk~k1hYeJBc;!7%36MGakAG6WU zE{IE&o{*3bXT+^14j|O36)h4dLOmhD0r3YE^_qVH#5?mCL2lmBnRI57J05*nCM`kr%ihTw_QK6{Z=| zO4L2sPz5qxBlb*_eTD?yHXw@>Oq(Wm(}d>uC0eJ4A?16a zY><9vx-gx^9`xGCVJ}0*lb3~G5B;0w`jK z`Ox=fcI(wZq^ySPZXkTKa`^8D4}aYAp5ED$^E?QBX;#MlyQlA)zeKgGKG(R)Ro2TU z{^5~$R;&l16lSGyZ|>*0y*FsnOCp$WzC0a9m6kp0N;jC$8?P2>(Gk_M7{!>4B#toj z%&d69sw+#EMZg<8;B+3w+Vuq80n?31>0*?E&U1yb2C43CZscvF->?m5bHk>`a5A=G zB`KN|GyR(zWn+w;>&%&skvGN?FMc%*Ct0IiuHSS7=j^>q)t^{-*=e>qt$jx|l zzFOnH%NJM054vIKo^hp^4c8WhA6M*oFZAo;qN|6$m6r5EtP^`ycP za!*p99hrliN4*Z}k*%mwq3jrq((Ygv|A2iv*Kx~xOqqcxYO~uT6gw$9M}Mu-^&WKX z5Xv-LSFPd`IDcW^=Xz_G-XVS8j{ZcvgRIu~qTl-;Ms^pYml*k0j4#_`^b=#C731sn z7+(=%uoYu}dyGM19B9Qj*dF5`F%Gq29Bz*>M2tc!MzKA{FfoQPLXN1ACrYt5QrcaQ zsPL(=QoAlSL$Xm4ZHp(6pr5wp6O@bJ{0aNF9l|~$(MU|tJ#B9GiAnW0_Ixyd64Mly zY4j)=|JVW&-{W}noWQru>?9R%N;jt$z!c8l>;iHMoeJZMzTmnoDGV!&D5RpaOJPu9 RK%q~epm0FpkV0Nz;v?d1>F)pl literal 0 HcmV?d00001 diff --git a/kotlin/space-age/build/classes/main/SpaceAgeKt.class b/kotlin/space-age/build/classes/main/SpaceAgeKt.class new file mode 100644 index 0000000000000000000000000000000000000000..d09f916cdf2be451d06978c1f2ba6efd11bc6479 GIT binary patch literal 847 zcmZ`%U2hUW6g{(iIz>vcErM22v;w72h>1ySjKnQT3s@tjiRptGU`nRIF4>)J`q-c2 zn{R3~F^!M@DC1p_s%hNp+_@iT&YgSj{P_9h8-N;W47@WDJy{>frjCFyBu>PssEmX) zs2p@pWRJW7hLB@>R-Yl5Hwz|1Y6{ZwOjk_VQ)4k|*v?oGHo_3i`CmDgi{ctX_^Gm# ze#WqpZ~dX}Xh&Itox))Z3y5( zY9{kVn9T0f1n~}im*JCF8FClroYOKAVQxf?OgwRMo-wvqEu1j?{rmec_1WmtNa$?b z^{28a2J+olD2qy)kEuMQD+gcLeaVn)**!5j6pj+qf;YZkSZpavzVyaj>HPNaj_o-; z*-(CXd1jch>kW3#w6t7h6My=(XK6K-hssq%Q@1Qz3r!&xRTv0TCH}qA2q8>+iL4$1 zqyy=%h`vqoPl&fm>mQNa4y8k%adW@$fr17$NoEO}B0Y@^X`BXm3%ALp!&oC9P^Oif zrU_C!gjHH8q7R@#5d$08qWz%LuD`l`vD6CQoX&$6JK4F`;2YU$_OEtb;+vWmTfCa9 zmL5OZuJYn8r`mw$RL>nsclQW^J!Gf&<89uXma&*(MN2#J_hOo*lgA1;jwRfbo3#yxS7~<_k`9uS{{?n3hEZxX-4VOE4 zg>J<*8IPldT1Fit;CQ}4)T|okqE5}MFW7QTl*x6%7*s9iBJW|>jk}OyJzw3tCm&vT zWQPV!cP6U^v5R3-`#^E4#4o&Adt~g!UTUi;*5unapkO~DUZ*<5?oJqEnw4^`%RJ@P z9`?Hwn|$yweQrpxg%844?jQYsYvM6sDb{-Z zZ2MoguX6(Kq@Z8K4$z7`c1*QI=*n;YYf@~=ZCO43$Fdab|CAphIzg0}d=!j{$niY& zh&!)4n#J>W{=D*u6zl%bW2L-)8n4_x#;J2|3Qmdm=NamF=7j3Fmchfn`Q;q-`P3b1 z^Ze&htk#n^@6n+)4dJCg711;K=#!S3FZ!qCM{82-w85*Edj8}!pXJfQOTny&&gR+2 zwRy)iG%q=OaCU{l=li@~-I03!E@IEQDR4#nqIZEL88vu`VM9E3%*QlGO{* z1PiiNZ2y{Ee0Yb(%_Qp(#uIpw>Y+e9g;tX9(zhPoPRR7Tf)=d93e6<)3X3b*uwN;RV(gL1-oTsF^n#<+##=Td8v(BDurX<4$VSwLVdIRAw2f{X%l`uE C^Yz>S literal 0 HcmV?d00001 diff --git a/kotlin/space-age/build/kotlin-build/caches/version.txt b/kotlin/space-age/build/kotlin-build/caches/version.txt new file mode 100644 index 0000000..01aabac --- /dev/null +++ b/kotlin/space-age/build/kotlin-build/caches/version.txt @@ -0,0 +1 @@ +11001 \ No newline at end of file diff --git a/kotlin/space-age/space-age.iml b/kotlin/space-age/space-age.iml new file mode 100644 index 0000000..64f1367 --- /dev/null +++ b/kotlin/space-age/space-age.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/space-age/src/main/kotlin/.keep b/kotlin/space-age/src/main/kotlin/.keep new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/space-age/src/main/kotlin/SpaceAge.kt b/kotlin/space-age/src/main/kotlin/SpaceAge.kt new file mode 100644 index 0000000..290f36f --- /dev/null +++ b/kotlin/space-age/src/main/kotlin/SpaceAge.kt @@ -0,0 +1,47 @@ +import java.text.DecimalFormat + +fun round(inp: Double): Double{ + val df: DecimalFormat = DecimalFormat("#####.##") + val out = df.format(inp).toDouble() + return out +} + +class SpaceAge(val seconds: Long) { + + private fun ageOnEarth(): Double{ + return seconds.toDouble().div(31557600) + } + + fun onEarth(): Double{ + return round(ageOnEarth()) + } + + fun onMercury(): Double{ + return round(ageOnEarth()/0.2408467) + } + + fun onVenus(): Double{ + return round(ageOnEarth()/0.61519726) + } + + fun onMars():Double{ + return round(ageOnEarth()/1.8808158) + } + + fun onJupiter(): Double { + return round(ageOnEarth()/11.862615) + } + + fun onSaturn(): Double { + return round(ageOnEarth()/29.447498) + } + + fun onUranus(): Double { + return round(ageOnEarth()/84.016846) + } + + fun onNeptune(): Double { + return round(ageOnEarth()/164.79132) + } + +} \ No newline at end of file diff --git a/kotlin/space-age/src/test/kotlin/SpaceAgeTest.kt b/kotlin/space-age/src/test/kotlin/SpaceAgeTest.kt new file mode 100644 index 0000000..800b3cc --- /dev/null +++ b/kotlin/space-age/src/test/kotlin/SpaceAgeTest.kt @@ -0,0 +1,85 @@ +import org.junit.Test +import org.junit.Ignore +import kotlin.test.assertEquals + +class SpaceAgeTest { + + + @Test + fun ageInSeconds() { + val age = SpaceAge(1000000) + + assertEquals(1000000, age.seconds) + } + + + @Test + fun ageOnEarth() { + val age = SpaceAge(1000000000) + + assertEquals(31.69, age.onEarth()) + } + + + @Test + fun ageOnMercury() { + val age = SpaceAge(2134835688) + + assertEquals(67.65, age.onEarth()) + assertEquals(280.88, age.onMercury()) + } + + + @Test + fun ageOnVenus() { + val age = SpaceAge(189839836) + + assertEquals(6.02, age.onEarth()) + assertEquals(9.78, age.onVenus()) + } + + + @Test + fun ageOnMars() { + val age = SpaceAge(2329871239L) + + assertEquals(73.83, age.onEarth()) + assertEquals(39.25, age.onMars()) + } + + + @Test + fun ageOnJupiter() { + val age = SpaceAge(901876382) + + assertEquals(28.58, age.onEarth()) + assertEquals(2.41, age.onJupiter()) + } + + + @Test + fun ageOnSaturn() { + val age = SpaceAge(3000000000L) + + assertEquals(95.06, age.onEarth()) + assertEquals(3.23, age.onSaturn()) + } + + + @Test + fun ageOnUranus() { + val age = SpaceAge(3210123456L) + + assertEquals(101.72, age.onEarth()) + assertEquals(1.21, age.onUranus()) + } + + + @Test + fun ageOnNeptune() { + val age = SpaceAge(8210123456L) + + assertEquals(260.16, age.onEarth()) + assertEquals(1.58, age.onNeptune()) + } +}