blob: a931a8bef62eba44553004de3cbfeea73a7c8ad9 (
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
76
77
78
79
80
81
|
//! ref: composer/tests/Composer/Test/IO/ConsoleIOTest.php
// These mock Symfony's InputInterface/OutputInterface/HelperSet (and QuestionHelper) to
// drive ConsoleIO; those console abstractions are not ported.
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_is_interactive() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_write() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_write_error() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_write_with_multiple_line_string_when_debugging() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_overwrite() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_ask() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_ask_confirmation() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_ask_and_validate() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_select() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_set_and_get_authentication() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_get_authentication_when_did_not_set() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_has_authentication() {
todo!()
}
#[test]
#[ignore = "mocks Symfony Input/Output/HelperSet to drive ConsoleIO; not ported"]
fn test_sanitize() {
todo!()
}
|