├── .gitignore ├── entity └── category.go ├── go.mod ├── go.sum ├── helper ├── hello_world.go └── hello_world_test.go ├── repository ├── category_repository.go └── category_repository_mock.go └── service ├── category_service.go └── category_service_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /entity/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/entity/category.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/go.sum -------------------------------------------------------------------------------- /helper/hello_world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/helper/hello_world.go -------------------------------------------------------------------------------- /helper/hello_world_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/helper/hello_world_test.go -------------------------------------------------------------------------------- /repository/category_repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/repository/category_repository.go -------------------------------------------------------------------------------- /repository/category_repository_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/repository/category_repository_mock.go -------------------------------------------------------------------------------- /service/category_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/service/category_service.go -------------------------------------------------------------------------------- /service/category_service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-golang-unit-test/HEAD/service/category_service_test.go --------------------------------------------------------------------------------