1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/test.R
\name{igraph_test}
\alias{igraph_test}
\alias{igraphtest}
\title{Run package tests}
\usage{
igraph_test()
}
\value{
Whatever is returned by \code{test_dir} from the \code{testthat}
package.
}
\description{
Runs all package tests.
}
\details{
The \code{testthat} package is needed to run all tests. The location tests
themselves can be extracted from the package via \code{system.file("tests",
package="igraph")}.
This function simply calls the \code{test_dir} function from the
\code{testthat} package on the test directory.
}
\author{
Gabor Csardi \email{csardi.gabor@gmail.com}
}
\keyword{graphs}
|