Skip to content

Commit

Permalink
refactor(MainActivity): 필요없는 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
hyemdooly committed Mar 24, 2023
1 parent 66200e5 commit 8bedfaa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import androidx.core.view.children
import domain.game.Omok
import domain.game.Omok.Companion.OMOK_BOARD_SIZE
import domain.player.BlackPlayer
import domain.player.Players
import domain.player.WhitePlayer
import domain.point.Point
import domain.point.Points
Expand Down
18 changes: 0 additions & 18 deletions domain/src/test/kotlin/game/OmokTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,6 @@ class OmokTest {
private lateinit var blackRule: OmokRule
private lateinit var whiteRule: OmokRule

private val blackPositions: MutableList<Point> by lazy {
mutableListOf(
Point(1, 1),
Point(1, 2),
Point(1, 3),
Point(1, 4),
Point(1, 5),
)
}
private val whitePositions: MutableList<Point> by lazy {
mutableListOf(
Point(3, 3),
Point(3, 4),
Point(3, 10),
Point(5, 5),
)
}

@BeforeEach
fun setUp() {
blackRule = BlackRenjuRule()
Expand Down

0 comments on commit 8bedfaa

Please sign in to comment.