Skip to content

Commit

Permalink
feat(gotests): generate tests only for exported func
Browse files Browse the repository at this point in the history
docs(gotests): generate test for exported funcs
  • Loading branch information
olexsmir committed Jun 23, 2022
1 parent c5096aa commit b4fd34e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ Generate all tests for all functions/methods in current file
:GoTestsAll
```

Generate tests only for exported functions/methods in current file

```vim
:GoTestsExp
```

7. Run `go generate` command

```vim
Expand Down
12 changes: 12 additions & 0 deletions lua/gopher/gotests.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,16 @@ function M.all_tests(parallel)
add_test(cmd_args)
end

---generate unit tests for all exported functions
---@param parallel boolean
function M.all_exported_tests(parallel)
local cmd_args = {}
if parallel then
table.insert(cmd_args, "-parallel")
end

table.insert(cmd_args, "-exported")
add_test(cmd_args)
end

return M
1 change: 1 addition & 0 deletions lua/gopher/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ gopher.get = require "gopher.goget"
gopher.impl = require "gopher.impl"
gopher.generate = require "gopher.gogenerate"
gopher.test_add = gotests.one_test
gopher.test_exported = gotests.all_exported_tests
gopher.tests_all = gotests.all_tests

return gopher
1 change: 1 addition & 0 deletions plugin/gopher.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ command! -nargs=* GoTagAdd :lua require"gopher".tags_add(<f-args>)
command! -nargs=* GoTagRm :lua require"gopher".tags_rm(<f-args>)
command! -nargs=* GoTestAdd :lua require"gopher".test_add(<f-args>)
command! -nargs=* GoTestsAll :lua require"gopher".tests_all(<f-args>)
command! -nargs=* GoTestsExp :lua require"gopher".test_exported(<f-args>)
command! -nargs=* GoMod :lua require"gopher".mod(<f-args>)
command! -nargs=* GoGet :lua require"gopher".get(<f-args>)
command! -nargs=* GoImpl :lua require"gopher".impl(<f-args>)
Expand Down

0 comments on commit b4fd34e

Please sign in to comment.