tests/testthat/test-CalculateFuzziness.R

test_that("Function returns correct values", {

  # starting values

  fuzzyValuesA <- matrix(c(0.25,0.5,1,1.25,0.75,1,1.5,2.2,-1,0,0,2,0,1,2,2.2),ncol = 4,byrow = TRUE)

  fuzzyValuesIncA <- matrix(c(0.25,0.5,1,0.25,0.25,1,1.5,0.7,1,0,0,2,1,1,2,0.2), ncol = 4,byrow = TRUE)

  # tests

  expect_equal(CalculateFuzziness(fuzzyValuesA[1,]), 0.125, tolerance = 1e-6)

  expect_equal(CalculateFuzziness(fuzzyValuesIncA[1,], increases = TRUE), 0.125, tolerance = 1e-6)

  expect_equal(CalculateFuzziness(fuzzyValuesA), c(0.1250, 0.2375, 0.7500, 0.3000), tolerance = 1e-6)

  expect_equal(CalculateFuzziness(fuzzyValuesIncA, increases = TRUE), c(0.1250, 0.2375, 0.7500, 0.3000),
               tolerance = 1e-6)

})



test_that("Function reports errors", {

  # starting values

  fuzzyValuesNA <- matrix(c(NA,0.5,1,1.25,0.75,1,1.5,2.2,-1,0,0,2),ncol = 4,byrow = TRUE)

  fuzzyValuesNotFuzzy <- matrix(c(7,0.5,1,1.25,0.75,1,1.5,2.2,-1,0,0,2),ncol = 4,byrow = TRUE)

  fuzzyValues5Elem <- matrix(c(0.25,0.5,1,0.25,0.25,1,1.5,0.7,1,0), ncol = 5,byrow = TRUE)

  strangeValues <- c("c", TRUE, 4, -3)

  arrNotMatrix <- array(c(5,9,3,10,11,12,13,14,15),dim = c(3,3,2))

  InfInVector <- c(Inf,0,2,3)

  fuzzyValues <- matrix(c(0.25,0.5,1,1.25,0.75,1,1.5,2.2,-1,0,0,2),ncol = 4,byrow = TRUE)

  # tests

  expect_error(CalculateFuzziness(fuzzyValuesNA), "There are some NA in initial sample")

  expect_error(CalculateFuzziness(fuzzyValuesNotFuzzy), "Some initial values are not correct fuzzy numbers")

  expect_error(CalculateFuzziness(fuzzyValues5Elem), "There should be 4 columns in initial sample")

  expect_error(CalculateFuzziness(strangeValues), "Some values in initial sample are not numeric ones")

  expect_error(CalculateFuzziness(arrNotMatrix), "Values in initialSample are not given as a matrix/vector")

  expect_error(CalculateFuzziness(InfInVector), "Some initial values are not correct fuzzy numbers")

  expect_error(CalculateFuzziness(fuzzyValues,increases = "15"), "Parameter increases should have logical value")

})

Try the FuzzyResampling package in your browser

Any scripts or data that you put into this service are public.

FuzzyResampling documentation built on Oct. 4, 2024, 5:11 p.m.