aboutsummaryrefslogtreecommitdiff
path: root/tests/test_reliability.r
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-07-06 19:45:53 -0500
committerTinWoodman92 <chrhodgden@gmail.com>2023-07-06 19:45:53 -0500
commit6b597ec070f3de04d91b22f2a7d56c3135730138 (patch)
treedd63ca70e8bc034eb23f1ee123c597350f26a01a /tests/test_reliability.r
parent1398f37b1ffd35dd42e2e76695429bea2c454d18 (diff)
added reliability tests
Diffstat (limited to 'tests/test_reliability.r')
-rw-r--r--tests/test_reliability.r18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/test_reliability.r b/tests/test_reliability.r
new file mode 100644
index 0000000..ba6daaf
--- /dev/null
+++ b/tests/test_reliability.r
@@ -0,0 +1,18 @@
+chk_0 <- TRUE
+
+add_to_vector <- function(vect_name, val) {
+ vect <- get(vect_name, envir = globalenv())
+ vect <- c(vect, val)
+ assign(vect_name, vect, envir = globalenv())
+ return(TRUE)
+}
+
+display_vector <- function(vect_name) {
+ vect <- get(vect_name, envir = globalenv())
+ display_msg(vect)
+ return(TRUE)
+}
+
+no_return_method <- function(i) {
+
+} \ No newline at end of file