commit | 4cf5205ce21c48ae815c7e38811b1ab9224e0c3a | [log] [tgz] |
---|---|---|
author | Marco Poletti <poletti.marco@gmail.com> | Sun Oct 16 16:35:10 2016 +0100 |
committer | Marco Poletti <poletti.marco@gmail.com> | Sun Oct 16 16:35:10 2016 +0100 |
tree | 6e3df6fb18ba291fef0598738a9702e0e979749b | |
parent | 5498f4f5c7de37d6969ced6cc656eb859005506d [diff] |
Fix various test failures due to the python test rewrite. * Install python3, python3-nose2, python3-sh on OSX in Travis CI * Escape a backslash in tests/CMakeLists.txt, the CMake in Ubuntu 16.04 is ok with it but older versions of CMake fail at configure time. * Remove a memory leak in a test committed by mistake * Remove an obsolete import in the BUILD file for test (this caused an error when testing with Bazel).
Fruit is a dependency injection framework for C++, loosely inspired by the Guice framework for Java. It uses C++ metaprogramming together with some new C++11 features to detect most injection problems at compile-time. It allows to split the implementation code in "components" (aka modules) that can be assembled to form other components. From a component with no requirements it's then possible to create an injector, that provides an instance of the interfaces exposed by the component.
See the wiki for more information, including installation instructions, tutorials and reference documentation.