Description Usage Arguments Value Author(s) See Also Examples
View source: R/identifyOPInstrumentationLevel.R
Provide short information about offensive programming instrumentation level
1 2 | identifyOPInstrumentationLevel(object_o_1 = NULL,
methodName_s_1 = NA_character_)
|
object_o_1 |
the object to be checked |
methodName_s_1 |
the method to consider, if any. |
A list
with following names
offensive_programming |
a single boolean |
full_instrumentation |
a single boolean |
semantic_naming |
a single boolean |
function_return_type |
a single boolean |
test_case_definition |
a single boolean |
Fabien Gelineau <neonira@gmail.com>
Maintainer: Fabien Gelineau <neonira@gmail.com>
Refer to verifyClassName
and verifyFunctionName
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ##---- typical case ----
library('data.table')
source(system.file('code-samples/frt-defs/good/full/AdditionFI.R',
package = 'wyz.code.offensiveProgramming'))
identifyOPInstrumentationLevel(AdditionFI())
#$offensive_programming
#[1] TRUE
#$full_instrumentation
#[1] FALSE
#$semantic_naming
#[1] TRUE
#$function_return_type
#[1] TRUE
#$test_case_definition
#[1] FALSE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.