mirror of
https://github.com/kbwo/testing-language-server.git
synced 2025-07-19 09:15:57 +00:00
15 lines
146 B
Go
15 lines
146 B
Go
package main
|
|
|
|
func Example_hello_ok() {
|
|
hello()
|
|
|
|
// Output:
|
|
// hello world
|
|
}
|
|
|
|
func Example_hello_ng() {
|
|
hello()
|
|
|
|
// Output:
|
|
// NG pattern
|
|
}
|