//! ref: composer/tests/Composer/Test/Installer/InstallationManagerTest.php /// Builds mocked Loop/repository/IO. The mocks are not available here, so this /// remains a stub. fn set_up() { todo!() } // These mock individual installers, the repository and IO to drive InstallationManager's // add/execute/install/update/uninstall logic; mocking is not available here. #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_add_get_installer() { todo!() } #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_add_remove_installer() { todo!() } #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_execute() { todo!() } #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_install() { todo!() } #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_update_with_equal_types() { todo!() } #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_update_with_not_equal_types() { todo!() } #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_uninstall() { todo!() } #[test] #[ignore = "mocks installers/repository/IO to drive InstallationManager; mocking is not available"] fn test_install_binary() { todo!() }