# OncoDataSets - A Comprehensive Collection of Cancer Types and Cancer-related DataSets # Version 0.1.0 # Copyright (C) 2024 Renzo Caceres Rossi # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # BRCA1BreastCancer_df data set library(testthat) # Test dataset structure and class test_that("BRCA1BreastCancer_df loads correctly and has the expected structure", { expect_s3_class(BRCA1BreastCancer_df, "data.frame") # Check if it's a data frame expect_equal(nrow(BRCA1BreastCancer_df), 11) # Check number of rows expect_equal(ncol(BRCA1BreastCancer_df), 2) # Check number of columns expect_equal(names(BRCA1BreastCancer_df), c("x", "y")) # Check column names }) # Test data types of columns test_that("BRCA1BreastCancer_df has correct column types", { expect_true(is.numeric(BRCA1BreastCancer_df$x)) # Check if 'x' is numeric expect_true(is.numeric(BRCA1BreastCancer_df$y)) # Check if 'y' is numeric }) # Test for missing values in critical columns test_that("BRCA1BreastCancer_df reports NA values in the columns", { n_na_x <- sum(is.na(BRCA1BreastCancer_df$x)) n_na_y <- sum(is.na(BRCA1BreastCancer_df$y)) expect_true(n_na_x == 0, info = paste("Found", n_na_x, "NA values in x")) expect_true(n_na_y == 0, info = paste("Found", n_na_y, "NA values in y")) })