Skip to content

Instantly share code, notes, and snippets.

@nagymarci
nagymarci / buy.go
Created November 18, 2023 14:01
Unit tests with auto-generated REST clients
package app
import (
"context"
"errors"
"fmt"
petstore_client "github.com/nagymarci/petstore-client"
)
@nagymarci
nagymarci / main.go
Created October 23, 2022 19:02
Integration tests in Go
package main
import (
"database/sql"
"encoding/json"
"errors"
"fmt"
"net/http"
"os"
"time"