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.

196 lines
7.9 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 --output test00.txt"`
```
3 years ago
Usage: go run . [STRING] [BANNER] [OPTION]
2 years ago
Example: go run . something standard --output=<fileName.txt>
3 years ago
```
3 years ago
###### Does it display the same result as above?
3 years ago
##### Try passing as arguments `"First\nTest" shadow --output=test00.txt`
3 years ago
```
student$ cat test00.txt
$
_|_|_|_| _| _| $
_| _| _|_| _|_|_| _|_|_|_| $
_|_|_| _| _|_| _|_| _| $
_| _| _| _|_| _| $
_| _| _| _|_|_| _|_| $
$
$
$
_|_|_|_|_| _| $
_| _|_| _|_|_| _|_|_|_| $
_| _|_|_|_| _|_| _| $
_| _| _|_| _| $
_| _|_|_| _|_|_| _|_| $
$
$
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments `"hello" standard --output=test01.txt`
```
student$ cat test01.txt
3 years ago
_ _ _ $
| | | | | | $
| |__ ___ | | | | ___ $
| _ \ / _ \ | | | | / _ \ $
| | | | | __/ | | | | | (_) | $
|_| |_| \___| |_| |_| \___/ $
$
$
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments `"123 -> #$%" standard --output=test02.txt`
```
student$ cat test02.txt
3 years ago
__ _ _ _ _ __ $
_ ____ _____ \ \ _| || |_ | | (_) / / $
/ | |___ \ |___ / ______ \ \ |_ __ _| / __) / / $
| | __) | |_ \ |______| > > _| || |_ \__ \ / / $
| | / __/ ___) | / / |_ __ _| ( / / / _ $
|_| |_____| |____/ /_/ |_||_| |_| /_/ (_) $
$
$
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments `"432 -> #$%&@" shadow --output=test03.txt`
```
student$ cat test03.txt
3 years ago
$
_| _| _|_|_| _|_| _| _| _| _| _|_| _| _| _|_|_|_|_| $
_| _| _| _| _| _| _|_|_|_|_| _|_|_| _|_| _| _| _| _| _| $
_|_|_|_| _|_| _| _|_|_|_|_| _| _| _| _|_| _| _|_| _| _| _|_|_| _| $
_| _| _| _| _|_|_|_|_| _|_| _| _|_| _| _| _| _| _| _| $
_| _|_|_| _|_|_|_| _| _| _| _|_|_| _| _|_| _|_| _| _| _|_|_|_| $
_| _| $
_|_|_|_|_|_| $
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments `"There" shadow --output=test04.txt`
```
student$ cat test04.txt
3 years ago
$
_|_|_|_|_| _| $
_| _|_|_| _|_| _| _|_| _|_| $
_| _| _| _|_|_|_| _|_| _|_|_|_| $
_| _| _| _| _| _| $
_| _| _| _|_|_| _| _|_|_| $
$
$
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments `"123 -> \"#$%@" thinkertoy --output=test05.txt`
```
student$ cat test05.txt
3 years ago
o o | | $
0 -- o-o o | | | | -O-O- O o $
/| o o | \ -O-O- o | | o / / \ $
o | / oo O | | -O-O- / o O-o $
| / | o-o / -O-O- | | o / o \ $
o-o-o o--o o-o o | | -O-O- O o- $
| | $
$
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments `"2 you" thinkertoy --output=test06.txt`
```
student$ cat test06.txt
3 years ago
$
-- $
o o $
/ o o o-o o o $
/ | | | | | | $
o--o o--O o-o o--o $
| $
o--o $
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments `"Testing long output!" standard --output=test07.txt`
```
student$ cat test07.txt
3 years ago
_______ _ _ _ _ _ _ $
|__ __| | | (_) | | | | | | | | $
| | ___ ___ | |_ _ _ __ __ _ | | ___ _ __ __ _ ___ _ _ | |_ _ __ _ _ | |_ | | $
| | / _ \ / __| | __| | | | '_ \ / _` | | | / _ \ | '_ \ / _` | / _ \ | | | | | __| | '_ \ | | | | | __| | | $
| | | __/ \__ \ \ |_ | | | | | | | (_| | | | | (_) | | | | | | (_| | | (_) | | |_| | \ |_ | |_) | | |_| | \ |_ |_| $
|_| \___| |___/ \__| |_| |_| |_| \__, | |_| \___/ |_| |_| \__, | \___/ \__,_| \__| | .__/ \__,_| \__| (_) $
__/ | __/ | | | $
|___/ |___/ |_| $
3 years ago
$
```
###### Does it save the right output in the right file?
##### Try passing as arguments a random string with lower and upper case letters, and the output flag ("--output=") followed by a random file name.
###### Does it save the right output in the right file?
##### Try passing as arguments a random string with lower case letters, numbers and spaces, and the output flag ("--output=") followed by a random file name.
###### Does it save the right output in the right file?
##### Try passing as arguments a random string with special characters, and the output flag ("--output=") followed by a random file name.
###### Does it save the right output in the right file?
##### Try passing as arguments a random string with lower, upper case, spaces and numbers letters, and the output flag ("--output=") followed by a random file name.
###### Does it save the right output in the right file?
###### Are all the test files tested saved?
###### 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.)?
2 years ago
###### +Is the output of the program well structured? Are the characters are correctly in line?
2 years ago
###### +Is there a test file for this code?
2 years ago
###### +Are the tests checking each possible case?
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?
2 years ago
###### +Would you recommend/nominate this program as an example for the rest of the school?