===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-unitizer-1.4.11/tests/testthat/testthat.misc.R-56-  expect_equal(unitizer:::valid_names("h_llo"), "h_llo")
r-cran-unitizer-1.4.11/tests/testthat/testthat.misc.R:57:  expect_equal(unitizer:::valid_names("$hot"), "`$hot`")
r-cran-unitizer-1.4.11/tests/testthat/testthat.misc.R-58-  expect_equal(unitizer:::valid_names("HELLO"), "HELLO")
##############################################
r-cran-unitizer-1.4.11/tests/testthat/testthat.misc.R-166-  expect_equal(
r-cran-unitizer-1.4.11/tests/testthat/testthat.misc.R:167:    c("Condition type mismatch, `target` is 'Error', but `current` is 'Warning'", "Condition mismatch may involve print/show methods; carefully review conditions with `.NEW$conditions` and `.REF$conditions` as just typing `.ref` or `.new` at the prompt will invoke print/show methods, which themselves may be the cause of the mismatch"),
r-cran-unitizer-1.4.11/tests/testthat/testthat.misc.R-168-    all.equal(lst2[[3]], lst1[[3]])
##############################################
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd-210-* `.NEW` prints general information about the test.
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:211:* `.NEW$value` returns the test value; equivalent to typing `.new` at the
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd-212-  prompt.
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:213:* `.NEW$conditions` returns the list of conditions produced by the test.
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:214:* `.NEW$messsage` returns the stderr captured during test evaluation.
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:215:* `.NEW$output` returns the screen output captured during test evaluation (note
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:216:  often this will be similar to what you get from `.new` or `.NEW$value` since
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd-217-  typing those expressions at the prompt leads to the value being printed).
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:218:* `.NEW$call` returns the test expression.
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:219:* `.NEW$aborted` returns whether the test expression invoked an "abort" restart
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd-220-  (e.g. called `stop` at some point).
##############################################
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd-226-evaluating `diffobj::diffObj` between each component of `.NEW` and `.REF`.
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:227:`.diff` is shorthand for `.DIFF$value`.  If there are state differences
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd:228:(e.g. search path) you will be able to view those with `.DIFF$state`.
r-cran-unitizer-1.4.11/vignettes/u3_interactive-env.Rmd-229-
##############################################
r-cran-unitizer-1.4.11/R/prompt.R-401-    stop( # nocov start
r-cran-unitizer-1.4.11/R/prompt.R:402:      "Internal Error: internal object `.global$prompt.vals` has unexpected ",
r-cran-unitizer-1.4.11/R/prompt.R-403-      "value; contact maintainer."
##############################################
r-cran-unitizer-1.4.11/R/browse.R-748-            "State mismatch; see %s.",
r-cran-unitizer-1.4.11/R/browse.R:749:            if(x@use.diff) "`.DIFF$state` for details"
r-cran-unitizer-1.4.11/R/browse.R:750:            else "`.NEW$state` and `.REF`$state"
r-cran-unitizer-1.4.11/R/browse.R-751-          )
##############################################
r-cran-unitizer-1.4.11/R/browse.R-864-          "objects inside the test objects; for example, use ",
r-cran-unitizer-1.4.11/R/browse.R:865:          "`.NEW$conditions[[1L]]` to get first condition from new evaluation."
r-cran-unitizer-1.4.11/R/browse.R-866-        )
##############################################
r-cran-unitizer-1.4.11/R/conditions.R-189-      "Condition mismatch may involve print/show methods; carefully review ",
r-cran-unitizer-1.4.11/R/conditions.R:190:      "conditions with `.NEW$conditions` and `.REF$conditions` as just ",
r-cran-unitizer-1.4.11/R/conditions.R-191-      "typing `.ref` or `.new` at the prompt will invoke print/show methods, ",
##############################################
r-cran-unitizer-1.4.11/R/item.R-235-      "\nAccess components with `$`, e.g.",
r-cran-unitizer-1.4.11/R/item.R:236:      paste0("`", if(object@reference) ".REF" else ".NEW", "$value`;"),
r-cran-unitizer-1.4.11/R/item.R:237:      "see `help(\"$\", \"unitizer\")`\n"
r-cran-unitizer-1.4.11/R/item.R-238-    )
##############################################
r-cran-unitizer-1.4.11/R/browse.struct.R-980-      "between each of those components.  `.new`, `.ref`, and `.diff` ",
r-cran-unitizer-1.4.11/R/browse.struct.R:981:      "are each respectively copies of `.NEW$value`, `.REF$value`, ",
r-cran-unitizer-1.4.11/R/browse.struct.R:982:      "and `.DIFF$value` provided for convenience.",
r-cran-unitizer-1.4.11/R/browse.struct.R-983-
##############################################
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd-210-* `.NEW` prints general information about the test.
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:211:* `.NEW$value` returns the test value; equivalent to typing `.new` at the
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd-212-  prompt.
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:213:* `.NEW$conditions` returns the list of conditions produced by the test.
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:214:* `.NEW$messsage` returns the stderr captured during test evaluation.
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:215:* `.NEW$output` returns the screen output captured during test evaluation (note
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:216:  often this will be similar to what you get from `.new` or `.NEW$value` since
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd-217-  typing those expressions at the prompt leads to the value being printed).
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:218:* `.NEW$call` returns the test expression.
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:219:* `.NEW$aborted` returns whether the test expression invoked an "abort" restart
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd-220-  (e.g. called `stop` at some point).
##############################################
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd-226-evaluating `diffobj::diffObj` between each component of `.NEW` and `.REF`.
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:227:`.diff` is shorthand for `.DIFF$value`.  If there are state differences
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd:228:(e.g. search path) you will be able to view those with `.DIFF$state`.
r-cran-unitizer-1.4.11/inst/doc/u3_interactive-env.Rmd-229-
##############################################
r-cran-unitizer-1.4.11/inst/expkg/flm0/tests/unitizer/fastlm1.R-8-# The `unitizer>` prompt is like the standard R prompt. You may
r-cran-unitizer-1.4.11/inst/expkg/flm0/tests/unitizer/fastlm1.R:9:# enter expressions such as `lm(y ~ x, dat)$coefficients`, or
r-cran-unitizer-1.4.11/inst/expkg/flm0/tests/unitizer/fastlm1.R-10-# `str(res)`.
##############################################
r-cran-unitizer-1.4.11/debian/tests/run-unit-test-6-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-unitizer-1.4.11/debian/tests/run-unit-test:7:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-unitizer-1.4.11/debian/tests/run-unit-test-8-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM