testing-language-server 0.1.12

LSP server for testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestAddOne(t *testing.T) {
	assert.Equal(t, 2, addOne(1))
}

func TestAddTwo(t *testing.T) {
	assert.Equal(t, 3, addTwo(1))
}