(self, **kwargs)
| 96 | |
| 97 | class TestRandomLSB: |
| 98 | def _sp(self, **kwargs): |
| 99 | from StegaPy.plugin.randlsb import RandomLSBPlugin |
| 100 | from StegaPy.plugin.lsb.lsb_config import LSBConfig |
| 101 | cfg = LSBConfig(**kwargs) |
| 102 | p = RandomLSBPlugin(); p.config = cfg |
| 103 | return _make_stegapy(p, cfg) |
| 104 | |
| 105 | def test_roundtrip(self): |
| 106 | cover = _cover_bytes(512, 512) |
no test coverage detected