tests/testthat/test-eightParentPedigreeImproperFunnels.R

context("eightParentPedigreeImproperFunnels")

test_that("Check that the C and R versions are identical",
	{
		parameters <- expand.grid(selfingGenerations = 0:3, nSeeds = 1:3)
		seed <- 1
		apply(parameters, 1, function(x)
			{
				set.seed(seed)
				pedigreeR <- mpMap2:::eightParentPedigreeImproperFunnelsPrototype(selfingGenerations = x["selfingGenerations"], initialPopulationSize = 20, nSeeds = x["nSeeds"])
				set.seed(seed)
				pedigreeC <- eightParentPedigreeImproperFunnels(selfingGenerations = x["selfingGenerations"],initialPopulationSize = 20, nSeeds = x["nSeeds"])
				expect_identical(pedigreeR, pedigreeC)
				seed <<- seed + 1
			})
	})
rohan-shah/mpMap2 documentation built on July 21, 2020, 8:58 p.m.