You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.6 KiB

#### Functional
###### Has the requirement for the allowed packages been respected? (Reminder for this project: only [standard packages](https://golang.org/pkg/))
3 years ago
##### Try passing as arguments `"banana standard --align right"`
```
Usage: go run . [STRING] [BANNER] [OPTION]
2 years ago
Example : go run . something standard --align=right
3 years ago
```
3 years ago
###### Does it display the same result as above?
3 years ago
##### Try passing as arguments `"left standard --align=right"`
5 years ago
###### Does it display the correct result at the right side?
##### Try passing as arguments `"right standard --align=left"`
5 years ago
###### Does it display the correct result at the left side?
##### Try passing as arguments `"hello shadow --align=center"`
5 years ago
###### Does it display the correct result at the center?
##### Try passing as arguments `""1 Two 4" shadow --align=justify"`
5 years ago
###### Does it display the correct result justified?
##### Try passing as arguments `"23/32 standard --align=right"`
5 years ago
###### Does it display the correct result at the right side?
##### Try passing as arguments `"ABCabc123 thinkertoy --align=right"`
5 years ago
###### Does it display the correct result at the right side?
##### Try passing as arguments `"#$%&" thinkertoy --align=center"`
5 years ago
###### Does it display the correct result at the center?
##### Try passing as arguments `""23Hello World!" standard --align=left"`
5 years ago
###### Does it display the correct result at the left side?
##### Try passing as arguments `""HELLO there HOW are YOU?!" thinkertoy --align=justify"`
5 years ago
###### Does it display the correct result justified?
##### Try passing as arguments `""a -> A b -> B c -> C" shadow --align=right"`
5 years ago
###### Does it display the correct result at the right side?
##### Try reducing the terminal window and run `"abcd shadow --align=right"`
5 years ago
###### Does the representation adapt to the terminal size displaying the right result in the right side?
##### Try reducing the terminal window and run `"ola standard --align=center"`
5 years ago
###### Does the representation adapt to the terminal size displaying the right result in the center?
##### Try passing as arguments a random string with lower and upper case letters, and the align flag ("--align=") followed by a random alignment (left, right, center or justify).
5 years ago
###### Does it display the expected result?
##### Try passing as arguments a random string with lower case letters, numbers and spaces, and the align flag ("--align=") followed by a random alignment (left, right, center or justify).
5 years ago
###### Does it display the expected result?
##### Try passing as arguments a random string with special characters, and the align flag ("--align=") followed by a random alignment (left, right, center or justify).
5 years ago
###### Does it display the expected result?
##### Try passing as arguments a random string with lower, upper case, spaces and numbers letters, and the align flag ("--align=") followed by a random alignment (left, right, center or justify).
5 years ago
###### Does it display the expected result?
2 years ago
###### As an auditor, is this project up to every standard? If not, why are you failing the project?(Empty Work, Incomplete Work, Invalid Compilation, Cheating, Crashing, Leaks)
#### Basic
2 years ago
###### +Does the project runs quickly and effectively (Favoring of recursive, no unnecessary data requests, etc.)?
5 years ago
2 years ago
###### +Is the output of the program well structured? Are the characters are correctly in line?
5 years ago
2 years ago
###### +Is there a test file for this code?
5 years ago
2 years ago
###### +Are the tests checking each possible case?
5 years ago
2 years ago
###### +Does the code obey the [good practices](../../good-practices/README.md)?
#### Social
2 years ago
###### +Did you learn anything from this project?
5 years ago
2 years ago
###### +Would you recommend/nominate this program as an example for the rest of the school?