This is a test script written in Golang version 1.23. This script allows displaying the user's name via a flag.
Build your app:
go build main.go -o manual_parse
Run your app:
./manual_parse --help
If you run app with flag -h
or --help
:
A greeter application whitch prints the name you entered a specified number of times.
Usage of greeter: <option> [name]
Options:
-n int
Number of times to greet
-o string
Folder path for your HTML file
Flag -n
can write on console "Nice to meet you <user_name>
. Example:
> ./console-prog -n 3 "Richard"
Nite to meet you Richard
Nite to meet you Richard
Nite to meet you Richard
Flag -o
can create html
file. Example:
➜ manual_parse git:(main) ✗ ./main -o ./
Your name please? Press the Enter key when done.
Richard
In output - create file with:
<h1>Hello Richard!</h1>
go test -v
But also you can view precentations covired by this script.
go test -coverprofile cover.out && go tool cover -html=cover.out