Skip to content

Instantly share code, notes, and snippets.

View uhooi's full-sized avatar
🟢

uhooi

🟢
View GitHub Profile
@uhooi
uhooi / ExamLogic.kt
Last active May 18, 2020 00:22
Unit testing sample: 1. Target method before refactoring
package packagename
class ExamLogic {
fun scoreExam(point: Int): String {
if (point < 0 || point > 100) {
return "変な値を送るな!"
}
if (point < 30) {
return "赤点です!"
}
@uhooi
uhooi / Makefile
Last active February 8, 2020 15:44
Makefile for Re:VIEW
REVIEW_VERSION := 4.0
REVIEW_CONFIG_FILE ?= config.yml
REVIEW_OUTPUT_TYPE ?= pdf
REVIEW_BOOKNAME := Foo
.DEFAULT_GOAL := help
.PHONY: help
help:
@grep -E '^[a-zA-Z_-]+:.*?# .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":[^#]*? #| #"}; {printf "%-18s%s\n", $$1 $$3, $$2}'
@uhooi
uhooi / Makefile
Last active July 17, 2023 02:18
Makefile for iOS App development
PRODUCT_NAME := Foo
SCHEME_NAME := ${PRODUCT_NAME}
WORKSPACE_NAME := ${PRODUCT_NAME}.xcworkspace
UI_TESTS_TARGET_NAME := ${PRODUCT_NAME}UITests
TEST_SDK := iphonesimulator
TEST_CONFIGURATION := Debug
TEST_PLATFORM := iOS Simulator
TEST_DEVICE ?= iPhone 11 Pro Max
TEST_OS ?= 13.3
@uhooi
uhooi / project.yml
Last active January 16, 2025 06:47
XcodeGen project spec sample
name: {Project Name}
options:
bundleIdPrefix: {Bundle ID Prefix}
deploymentTarget:
iOS: 13.0
xcodeVersion: "11.3.1" # 変わらない?
# findCarthageFrameworks: true # 余計なフレームワークまで追加されてしまうためコメントアウト
carthageExecutablePath: mint run Carthage/Carthage carthage
@uhooi
uhooi / parameterized_test_merit.md
Last active December 2, 2019 13:07
「YUMEMI.swift #5 ~Free Talk~」のLTで使用した資料です。

パラメタライズドテストのメリット解説

2019/11/29(金)