blob: fbdb16f08a6f9baca5e8d5514a890b4bacec6f23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
//! ref: composer/tests/Composer/Test/Installer/SuggestedPackagesReporterTest.php
/// Builds an IO mock and a SuggestedPackagesReporter over it. The IO mock
/// (`getIOMock`) is not available here, so this remains a stub.
fn set_up() {
todo!()
}
// These construct a SuggestedPackagesReporter with a mocked IO and assert its accumulated
// suggestions and formatted output; mocking is not available here.
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_constructor() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_get_packages_empty_by_default() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_get_packages() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_add_package_appends() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_add_suggestions_from_package() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_output() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_output_with_no_suggestion_reason() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_output_ignores_formatting() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_output_multiple_packages() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_output_skip_installed_packages() {
todo!()
}
#[test]
#[ignore = "mocks IO to drive SuggestedPackagesReporter output; mocking is not available"]
fn test_output_not_getting_installed_packages_when_no_suggestions() {
todo!()
}
|