Go 30 Dec 2022Introduction of Go Routine on GolangUse go-routine when the process to be executed as a goroutine must be wrapped in a function. When calling the … 3 mntRead
Go 22 Dec 2022How to Overcome Handling Errors in GolangCurrently, Santekno will discuss error handling in the Golang language. We will learn from easy handling to … 6 mntRead
Go 29 Nov 2022Techniques for Creating Mocking Unit Tests in GolangWhen we create a function or code, sometimes we have difficulty carrying out unit tests at several points that … 14 mntRead
Go 29 Nov 2022How to Create Integration Tests in GolangCarrying out integration tests for APIs means that we must at least be able to run the application first so … 7 mntRead
Go 30 Oct 2022How to Create Unit Tests Using the moq Library in GolangCarrying out unit tests using this mocking method is usually used if several functions have been carried out … 3 mntRead
Go 30 Oct 2022How to Create Benchmark Units in GolangThe testing package in Golang Programming, apart from containing tools for testing, also contains tools for … 2 mntRead
Go 30 Oct 2022How to Create Unit Tests in GolangUnit Testing Using the Go Libraryprogramming is not easy, even the best programmers cannot write programs that … 7 mntRead
Go 24 Oct 2022Getting to Know Hashes Cryptography in GolangHashes & CryptographyThe hash function takes a set of data and reduces it to a smaller fixed size. Hash is … 2 mntRead
Go 24 Oct 2022Get to know Container List and Sort in GolangIn addition to arrays and maps, Go has several more collections available under the container package. … 3 mntRead
Go 10 Oct 2022Get to know the Standard String Library in GolangAs programmers who are learning Go Lang, we also need to know Go’s default library packages so that we … 3 mntRead
Go 10 Oct 2022Get to know the Input Output Library in GolangBefore studying the Golang IO library, there are lots of functions in the IO library but the most important … 2 mntRead
Go 17 Aug 2022Get to know functions, multiple returns, variadic and closures in GolangSecond FunctionConsists of input, output. Until now, we can only use the Go program for play functions like … 3 mntRead