File: test-rowcolnames.R

package info (click to toggle)
r-bioc-multiassayexperiment 1.24.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 996 kB
  • sloc: makefile: 2
file content (6 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
context("Checking for consistency in colnames and rownames")

test_that("rownames and colnames return CompressedCharacterList", {
    expect_true(is(rownames(mae), "CompressedCharacterList"))
    expect_true(is(colnames(mae), "CompressedCharacterList"))
})