public void Can_store_weightfactors()
        {
            _brain.BuildNeuronLayers();

            _repository.HasWeightingFactors.Should().BeFalse();

            _brain.StoreWeightFactors();

            _repository.HasWeightingFactors.Should().BeTrue();
        }