TestMultipleHunks.before

 1package main
 2
 3import (
 4    "fmt"
 5)
 6
 7func main() {
 8    fmt.Println(getContent())
 9}
10
11func getContent() string {
12    return "Hello, world!"
13}