Last active
June 30, 2017 18:20
-
-
Save kawaveri/22fca08ef6c11c49da0d62b8bcf75b88 to your computer and use it in GitHub Desktop.
けものはいても、のけものはいないことを検証します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.sub.zico_hihan.javaripark | |
/** | |
* 定数をここへ記載します。 | |
* | |
* Created by Kawaveri on 2017/07/01. | |
* @see <a href="http://zico-hihan.sub.jp/category/warasibe2/bugtte">カワヴェリ名人のBugって障害報告</a> | |
*/ | |
public val INHABIT_ANIMAL: String = "けもの" | |
public val INHABIT_BAG: String = "かばん" | |
public val INHABIT_BOSS: String = "ラッキービースト" | |
public val INHABIT_CERULEAN: String = "セルリアン" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.sub.zico_hihan.javaripark | |
import org.junit.Assert.* | |
import org.junit.Test | |
/** | |
* けものはいても、のけものはいないことを検証します。 | |
* | |
* Created by Kawaveri on 2017/07/01. | |
* @see <a href="http://zico-hihan.sub.jp/category/warasibe2/bugtte">カワヴェリ名人のBugって障害報告</a> | |
*/ | |
class ExampleUnitTest { | |
var javariPark: JavariPark = JavariPark() | |
@Test | |
fun けものはいる() { | |
assertTrue(javariPark.exists(INHABIT_ANIMAL)) | |
} | |
@Test | |
fun セルリアンもいる() { | |
assertTrue(javariPark.exists(INHABIT_CERULEAN)) | |
} | |
@Test | |
fun のけものはいない() { | |
assertFalse(javariPark.exists("のけもの")) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.sub.zico_hihan.javaripark | |
/** | |
* Javaりパーククラス | |
* | |
* Created by Kawaveri on 2017/07/01. | |
* @see <a href="http://zico-hihan.sub.jp/category/warasibe2/bugtte">カワヴェリ名人のBugって障害報告</a> | |
*/ | |
class JavariPark { | |
/** | |
* 指定したゆかいな仲間がJavaりパークにいるか判定します。 | |
* | |
* @param s ゆかいな仲間名 | |
* @return Javaりパークに存在したらtrueを返します | |
*/ | |
fun exists(s: String): Boolean { | |
// ゆかいな仲間リスト | |
val inhabitant = listOf( | |
INHABIT_CERULEAN | |
, INHABIT_ANIMAL | |
, INHABIT_BAG | |
, INHABIT_BOSS | |
) | |
// 指定の仲間がリストに含まれていたらtrueを返します | |
return s in inhabitant | |
} | |
} |
もう一つのテスト、「のけものはいない()」を追加。
これも失敗するので、「けもの以外はfalseを返す」ようにプログラムの方を修正。
「セルリアンもいる()」パターンのテストを追加。
exists()メソッドをリファクタリング。
重複する判定式を配列にまとめてスッキリ。
ExampleUnitTestクラスもリファクタリング。
JavariParkオブジェクトの初期化をKotlinらしくスッキリさせてみた。
定数を別ファイル管理にしました。
コメント記載したところで、取り敢えず完成。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
trueを返すメソッド「exists()」を含むクラス「JavariPark」を追加作成。
これで先程のテスト「けものはいる()」を再実行するとグリーン(テストOK)が返ってきます。