From 84d9333a4ac4b9d60dc9b525b8006456d6f614dc Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Tue, 1 Sep 2015 19:47:58 +0200 Subject: Fixed memory leak --- test/neural_network.cpp | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/neural_network.cpp b/test/neural_network.cpp index dd029d6..801f0ec 100644 --- a/test/neural_network.cpp +++ b/test/neural_network.cpp @@ -28,7 +28,7 @@ SCENARIO("network is read from istream") file << "s0 n3 0.5" << std::endl; file << "n3 n1 1" << std::endl; file << "b0 n0 0.4" << std::endl; - file << "b0 n3 0.5" << std:: endl; + file << "b0 n3 0.5" << std::endl; WHEN("the network is initialized") { @@ -41,4 +41,25 @@ SCENARIO("network is read from istream") } } } + + GIVEN("a valid recurrant config file") + { + std::stringstream file; + file << "s0 n3 0.5" << std::endl; + file << "n3 n1 1" << std::endl; + file << "b0 n0 0.4" << std::endl; + file << "b0 n3 0.5" << std::endl; + file << "n1 n3 0.5" << std::endl; + + WHEN("the network converges") + { + NeuralNetwork network(std::move(file), 1, 3); + + THEN("the network is constructed correctly") + { + network.setInput(0, 1); + REQUIRE(network.findMaxOutputIndex() == 1); + } + } + } } -- cgit v1.2.3