Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions solutions/ascii.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package solutions

func Ascii(str string) []byte {
return []byte(str)
}
27 changes: 27 additions & 0 deletions tests/ascii_test/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package main

import (
student "student"

"github.com/01-edu/go-tests/lib/challenge"
"github.com/01-edu/go-tests/lib/random"
"github.com/01-edu/go-tests/solutions"
)

func main() {
allAscii := ""
for i := 0; i <= 255; i++ {
allAscii += string(i)
}
args := []string{
"",
random.Str(allAscii, 1),
random.Str(allAscii, 8),
"Instead of this many random tests leave just a few and add some tests with long strings and multiple spaces",
"one two three four ",
}

for _, arg := range args {
challenge.Function("Ascii", student.Ascii, solutions.Ascii, arg)
}
}