From 77d5f21b541be135e7c9eec18f016b44920d571e Mon Sep 17 00:00:00 2001 From: Jim Posen Date: Fri, 3 Nov 2017 14:23:07 -0700 Subject: [PATCH] lntest: Add doc.go with package documentation. --- lntest/doc.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lntest/doc.go diff --git a/lntest/doc.go b/lntest/doc.go new file mode 100644 index 00000000..38ef4089 --- /dev/null +++ b/lntest/doc.go @@ -0,0 +1,10 @@ +/* +Package lntest provides testing utilities for the lnd repository. + +This package contains infrastructure for integration tests that launch full lnd +nodes in a controlled environment and interact with them via RPC. Using a +NetworkHarness, a test can launch multiple lnd nodes, open channels between +them, create defined network topologies, and anything else that is possible with +RPC commands. +*/ +package lntest