comparison runtime/doc/testing.txt @ 19483:0d3dcb4476ba v8.2.0299

patch 8.2.0299: Vim9: ISN_STORE with argument not tested Commit: https://github.com/vim/vim/commit/8ed04587d3cd53e29be20fde9c36e619ea7da4dc Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 22 19:07:28 2020 +0100 patch 8.2.0299: Vim9: ISN_STORE with argument not tested Problem: Vim9: ISN_STORE with argument not tested. Some cases in tv2bool() not tested. Solution: Add tests. Add test_unknown() and test_void().
author Bram Moolenaar <Bram@vim.org>
date Sat, 22 Feb 2020 19:15:04 +0100
parents 7be3663e2f2b
children a7a24d06d7ce
comparison
equal deleted inserted replaced
19482:5bb16fb9c9d1 19483:0d3dcb4476ba
119 Return a |Partial| that is null. Only useful for testing. 119 Return a |Partial| that is null. Only useful for testing.
120 120
121 121
122 test_null_string() *test_null_string()* 122 test_null_string() *test_null_string()*
123 Return a |String| that is null. Only useful for testing. 123 Return a |String| that is null. Only useful for testing.
124
125
126 test_unknown() *test_unknown()*
127 Return a value with unknown type. Only useful for testing.
128
129 test_void() *test_void()*
130 Return a value with void type. Only useful for testing.
124 131
125 132
126 test_option_not_set({name}) *test_option_not_set()* 133 test_option_not_set({name}) *test_option_not_set()*
127 Reset the flag that indicates option {name} was set. Thus it 134 Reset the flag that indicates option {name} was set. Thus it
128 looks like it still has the default value. Use like this: > 135 looks like it still has the default value. Use like this: >