Report for lv.id.jc.correcter.printer.BinPrinterSpec


Summary:

Created on Thu Jan 20 19:43:22 EET 2022 by jegors
Executed features Passed Failures Errors Skipped Success rate Time
1 1 0 0 0 100.0% 0.006 seconds

Features:

should print binary view of data Return
Given:
def printer = new BinPrinter()
Expect:
printer.apply(data) == binView
And:
binView = 'bin view: 01010100 01100101 01110011 01110100'
Examples:
data binView
[84, 101, 115, 116] bin view: 01010100 01100101 01110011 01110100 OK
1/1 passed