2020-10-09 12:08:47 +00:00
#[ cfg(test) ]
2020-10-09 12:05:22 +00:00
mod test {
use crate ::game ::Game ;
/// bitsy-parser will parse these games correctly
/// but the output does not match the input, due to game data errors
/// todo this array of game names does not work for unnamed games or duplicate game names
const ACCEPTED_FAILURES : [ & str ; 27 ] = [
// position out of bounds e.g. "5, -1"
" SweetPea Village " ,
" Sunset Shore " ,
" ==GIRLS OWN THE VOID=={br}a faux platformer " ,
// extra tiles in room (this was an old editor bug)
" I can't run anymore. They won't give up. I need water. " ,
" Picnic at Castle Island " ,
" whatever you were doing ran later than expected and now it's " ,
" Goodfishas " ,
" Dont Go South " ,
" stars " ,
" We live in an increasingly connected world where we are incentivised to share every visual stimulus and emotional trigger that we encounter. " ,
" No Snow " ,
" Cryptid Hunt feat. Mothman " ,
" SCREEECH! THUNK. " ,
" Vitreous " ,
// extraneous character at end of file
" I Dream of Pixels " ,
" You arrive at a party. " ,
// extraneous whitespace
" sun machine " ,
" THE BITSY MYSTERY DUNGEON{br}A game by everyone " ,
" THE UNSEEN LIGHT{br}For Gothic Novel Jam 2018 " ,
// extra pixels in image (another old editor bug)
" Write your game's title hevery blind (just without glasses but look my eyesight is very my eye sight is not good ok) (also i had a drink but am barely even tipsy but whatever) " ,
" Dog Walking, Dog Running, and Dog Still. " ,
" startup sequence... " ,
" A Bit of Reverie " ,
" I am lost on this planet Alone, yet crowded by thoughts " ,
" Four Corners " ,
" the fox and the moon " ,
// unexpected ordering of game data
" here are my cats " ,
] ;
fn str ( s : & str ) {
let result = Game ::from ( s . to_string ( ) ) ;
if result . is_err ( ) {
print! ( " {:?} " , result ) ;
}
assert! ( result . is_ok ( ) ) ;
let game = result . expect ( " failed to parse game " ) ;
if ACCEPTED_FAILURES . contains ( & & * game . name ) {
return ;
}
assert_eq! (
game . to_string ( ) . trim_matches ( '\n' ) ,
s . to_string ( ) . trim_matches ( '\n' ) ,
" output does not match input "
) ;
}
#[ test ] fn test_0053b32f ( ) { str ( include_str! ( " test-resources/omnibus/0053B32F.bitsy.txt " ) ) ; }
#[ test ] fn test_00e45dc5 ( ) { str ( include_str! ( " test-resources/omnibus/00E45DC5.bitsy.txt " ) ) ; }
#[ test ] fn test_010beb39 ( ) { str ( include_str! ( " test-resources/omnibus/010BEB39.bitsy.txt " ) ) ; }
#[ test ] fn test_013b3cde ( ) { str ( include_str! ( " test-resources/omnibus/013B3CDE.bitsy.txt " ) ) ; }
#[ test ] fn test_0145f050 ( ) { str ( include_str! ( " test-resources/omnibus/0145F050.bitsy.txt " ) ) ; }
#[ test ] fn test_031faa8a ( ) { str ( include_str! ( " test-resources/omnibus/031FAA8A.bitsy.txt " ) ) ; }
#[ test ] fn test_0365960a ( ) { str ( include_str! ( " test-resources/omnibus/0365960A.bitsy.txt " ) ) ; }
#[ test ] fn test_04716e2a ( ) { str ( include_str! ( " test-resources/omnibus/04716E2A.bitsy.txt " ) ) ; }
#[ test ] fn test_058b6cc2 ( ) { str ( include_str! ( " test-resources/omnibus/058B6CC2.bitsy.txt " ) ) ; }
#[ test ] fn test_0727ffab ( ) { str ( include_str! ( " test-resources/omnibus/0727FFAB.bitsy.txt " ) ) ; }
#[ test ] fn test_07836d6f ( ) { str ( include_str! ( " test-resources/omnibus/07836D6F.bitsy.txt " ) ) ; }
#[ test ] fn test_0944c6fc ( ) { str ( include_str! ( " test-resources/omnibus/0944C6FC.bitsy.txt " ) ) ; }
#[ test ] fn test_09463227 ( ) { str ( include_str! ( " test-resources/omnibus/09463227.bitsy.txt " ) ) ; }
#[ test ] fn test_09b9f805 ( ) { str ( include_str! ( " test-resources/omnibus/09B9F805.bitsy.txt " ) ) ; }
#[ test ] fn test_0a5b0213 ( ) { str ( include_str! ( " test-resources/omnibus/0A5B0213.bitsy.txt " ) ) ; }
#[ test ] fn test_0b05d95e ( ) { str ( include_str! ( " test-resources/omnibus/0B05D95E.bitsy.txt " ) ) ; }
#[ test ] fn test_0bdf73f8 ( ) { str ( include_str! ( " test-resources/omnibus/0BDF73F8.bitsy.txt " ) ) ; }
#[ test ] fn test_0ca8ccc9 ( ) { str ( include_str! ( " test-resources/omnibus/0CA8CCC9.bitsy.txt " ) ) ; }
#[ test ] fn test_0cbaa229 ( ) { str ( include_str! ( " test-resources/omnibus/0CBAA229.bitsy.txt " ) ) ; }
#[ test ] fn test_0d045f5f ( ) { str ( include_str! ( " test-resources/omnibus/0D045F5F.bitsy.txt " ) ) ; }
#[ test ] fn test_0d5f9f11 ( ) { str ( include_str! ( " test-resources/omnibus/0D5F9F11.bitsy.txt " ) ) ; }
#[ test ] fn test_0daebe2d ( ) { str ( include_str! ( " test-resources/omnibus/0DAEBE2D.bitsy.txt " ) ) ; }
#[ test ] fn test_0dc609d8 ( ) { str ( include_str! ( " test-resources/omnibus/0DC609D8.bitsy.txt " ) ) ; }
#[ test ] fn test_0ddead71 ( ) { str ( include_str! ( " test-resources/omnibus/0DDEAD71.bitsy.txt " ) ) ; }
#[ test ] fn test_0f3f62ba ( ) { str ( include_str! ( " test-resources/omnibus/0F3F62BA.bitsy.txt " ) ) ; }
#[ test ] fn test_0fabc625 ( ) { str ( include_str! ( " test-resources/omnibus/0FABC625.bitsy.txt " ) ) ; }
#[ test ] fn test_0fba2397 ( ) { str ( include_str! ( " test-resources/omnibus/0FBA2397.bitsy.txt " ) ) ; }
#[ test ] fn test_0ff04b41 ( ) { str ( include_str! ( " test-resources/omnibus/0FF04B41.bitsy.txt " ) ) ; }
#[ test ] fn test_103cee9f ( ) { str ( include_str! ( " test-resources/omnibus/103CEE9F.bitsy.txt " ) ) ; }
#[ test ] fn test_1057e4b3 ( ) { str ( include_str! ( " test-resources/omnibus/1057E4B3.bitsy.txt " ) ) ; }
#[ test ] fn test_107b236b ( ) { str ( include_str! ( " test-resources/omnibus/107B236B.bitsy.txt " ) ) ; }
#[ test ] fn test_111183bd ( ) { str ( include_str! ( " test-resources/omnibus/111183BD.bitsy.txt " ) ) ; }
#[ test ] fn test_12201174 ( ) { str ( include_str! ( " test-resources/omnibus/12201174.bitsy.txt " ) ) ; }
#[ test ] fn test_12490381 ( ) { str ( include_str! ( " test-resources/omnibus/12490381.bitsy.txt " ) ) ; }
#[ test ] fn test_127e4635 ( ) { str ( include_str! ( " test-resources/omnibus/127E4635.bitsy.txt " ) ) ; }
#[ test ] fn test_13882e3b ( ) { str ( include_str! ( " test-resources/omnibus/13882E3B.bitsy.txt " ) ) ; }
#[ test ] fn test_138a5257 ( ) { str ( include_str! ( " test-resources/omnibus/138A5257.bitsy.txt " ) ) ; }
#[ test ] fn test_13935f38 ( ) { str ( include_str! ( " test-resources/omnibus/13935F38.bitsy.txt " ) ) ; }
#[ test ] fn test_14926703 ( ) { str ( include_str! ( " test-resources/omnibus/14926703.bitsy.txt " ) ) ; }
#[ test ] fn test_14c48fa0 ( ) { str ( include_str! ( " test-resources/omnibus/14C48FA0.bitsy.txt " ) ) ; }
#[ test ] fn test_163df269 ( ) { str ( include_str! ( " test-resources/omnibus/163DF269.bitsy.txt " ) ) ; }
#[ test ] fn test_1663a765 ( ) { str ( include_str! ( " test-resources/omnibus/1663A765.bitsy.txt " ) ) ; }
#[ test ] fn test_17c6de40 ( ) { str ( include_str! ( " test-resources/omnibus/17C6DE40.bitsy.txt " ) ) ; }
#[ test ] fn test_17f6799b ( ) { str ( include_str! ( " test-resources/omnibus/17F6799B.bitsy.txt " ) ) ; }
#[ test ] fn test_18647f85 ( ) { str ( include_str! ( " test-resources/omnibus/18647F85.bitsy.txt " ) ) ; }
#[ test ] fn test_18a82fc7 ( ) { str ( include_str! ( " test-resources/omnibus/18A82FC7.bitsy.txt " ) ) ; }
#[ test ] fn test_19217ac5 ( ) { str ( include_str! ( " test-resources/omnibus/19217AC5.bitsy.txt " ) ) ; }
#[ test ] fn test_196c5cfe ( ) { str ( include_str! ( " test-resources/omnibus/196C5CFE.bitsy.txt " ) ) ; }
#[ test ] fn test_1998508e ( ) { str ( include_str! ( " test-resources/omnibus/1998508E.bitsy.txt " ) ) ; }
#[ test ] fn test_19adfd75 ( ) { str ( include_str! ( " test-resources/omnibus/19ADFD75.bitsy.txt " ) ) ; }
#[ test ] fn test_19f30e9d ( ) { str ( include_str! ( " test-resources/omnibus/19F30E9D.bitsy.txt " ) ) ; }
#[ test ] fn test_1a2279eb ( ) { str ( include_str! ( " test-resources/omnibus/1A2279EB.bitsy.txt " ) ) ; }
#[ test ] fn test_1a595207 ( ) { str ( include_str! ( " test-resources/omnibus/1A595207.bitsy.txt " ) ) ; }
#[ test ] fn test_1b10d2fe ( ) { str ( include_str! ( " test-resources/omnibus/1B10D2FE.bitsy.txt " ) ) ; }
#[ test ] fn test_1c54c16d ( ) { str ( include_str! ( " test-resources/omnibus/1C54C16D.bitsy.txt " ) ) ; }
#[ test ] fn test_1e2742e0 ( ) { str ( include_str! ( " test-resources/omnibus/1E2742E0.bitsy.txt " ) ) ; }
#[ test ] fn test_1e339dba ( ) { str ( include_str! ( " test-resources/omnibus/1E339DBA.bitsy.txt " ) ) ; }
#[ test ] fn test_1f6683a4 ( ) { str ( include_str! ( " test-resources/omnibus/1F6683A4.bitsy.txt " ) ) ; }
#[ test ] fn test_1f8db6b8 ( ) { str ( include_str! ( " test-resources/omnibus/1F8DB6B8.bitsy.txt " ) ) ; }
#[ test ] fn test_209b9517 ( ) { str ( include_str! ( " test-resources/omnibus/209B9517.bitsy.txt " ) ) ; }
#[ test ] fn test_20b08319 ( ) { str ( include_str! ( " test-resources/omnibus/20B08319.bitsy.txt " ) ) ; }
#[ test ] fn test_21e26b92 ( ) { str ( include_str! ( " test-resources/omnibus/21E26B92.bitsy.txt " ) ) ; }
#[ test ] fn test_22ab996a ( ) { str ( include_str! ( " test-resources/omnibus/22AB996A.bitsy.txt " ) ) ; }
#[ test ] fn test_22cef657 ( ) { str ( include_str! ( " test-resources/omnibus/22CEF657.bitsy.txt " ) ) ; }
#[ test ] fn test_23a22678 ( ) { str ( include_str! ( " test-resources/omnibus/23A22678.bitsy.txt " ) ) ; }
#[ test ] fn test_23c95b44 ( ) { str ( include_str! ( " test-resources/omnibus/23C95B44.bitsy.txt " ) ) ; }
#[ test ] fn test_245ee1c6 ( ) { str ( include_str! ( " test-resources/omnibus/245EE1C6.bitsy.txt " ) ) ; }
#[ test ] fn test_24ac79ff ( ) { str ( include_str! ( " test-resources/omnibus/24AC79FF.bitsy.txt " ) ) ; }
#[ test ] fn test_24c74f49 ( ) { str ( include_str! ( " test-resources/omnibus/24C74F49.bitsy.txt " ) ) ; }
#[ test ] fn test_252182b5 ( ) { str ( include_str! ( " test-resources/omnibus/252182B5.bitsy.txt " ) ) ; }
#[ test ] fn test_26a20c22 ( ) { str ( include_str! ( " test-resources/omnibus/26A20C22.bitsy.txt " ) ) ; }
#[ test ] fn test_26a717c8 ( ) { str ( include_str! ( " test-resources/omnibus/26A717C8.bitsy.txt " ) ) ; }
#[ test ] fn test_27b5cddf ( ) { str ( include_str! ( " test-resources/omnibus/27B5CDDF.bitsy.txt " ) ) ; }
#[ test ] fn test_27dfc976 ( ) { str ( include_str! ( " test-resources/omnibus/27DFC976.bitsy.txt " ) ) ; }
#[ test ] fn test_2805c4e9 ( ) { str ( include_str! ( " test-resources/omnibus/2805C4E9.bitsy.txt " ) ) ; }
#[ test ] fn test_282c85b4 ( ) { str ( include_str! ( " test-resources/omnibus/282C85B4.bitsy.txt " ) ) ; }
#[ test ] fn test_2839d1ae ( ) { str ( include_str! ( " test-resources/omnibus/2839D1AE.bitsy.txt " ) ) ; }
#[ test ] fn test_284796eb ( ) { str ( include_str! ( " test-resources/omnibus/284796EB.bitsy.txt " ) ) ; }
#[ test ] fn test_284d2078 ( ) { str ( include_str! ( " test-resources/omnibus/284D2078.bitsy.txt " ) ) ; }
#[ test ] fn test_29e7379a ( ) { str ( include_str! ( " test-resources/omnibus/29E7379A.bitsy.txt " ) ) ; }
#[ test ] fn test_2a1d0af0 ( ) { str ( include_str! ( " test-resources/omnibus/2A1D0AF0.bitsy.txt " ) ) ; }
#[ test ] fn test_2a5fdae9 ( ) { str ( include_str! ( " test-resources/omnibus/2A5FDAE9.bitsy.txt " ) ) ; }
#[ test ] fn test_2a879a66 ( ) { str ( include_str! ( " test-resources/omnibus/2A879A66.bitsy.txt " ) ) ; }
#[ test ] fn test_2ae3f2f7 ( ) { str ( include_str! ( " test-resources/omnibus/2AE3F2F7.bitsy.txt " ) ) ; }
#[ test ] fn test_2ae5b41f ( ) { str ( include_str! ( " test-resources/omnibus/2AE5B41F.bitsy.txt " ) ) ; }
#[ test ] fn test_2b22c193 ( ) { str ( include_str! ( " test-resources/omnibus/2B22C193.bitsy.txt " ) ) ; }
#[ test ] fn test_2d2b56b6 ( ) { str ( include_str! ( " test-resources/omnibus/2D2B56B6.bitsy.txt " ) ) ; }
#[ test ] fn test_2d533752 ( ) { str ( include_str! ( " test-resources/omnibus/2D533752.bitsy.txt " ) ) ; }
#[ test ] fn test_2d678f83 ( ) { str ( include_str! ( " test-resources/omnibus/2D678F83.bitsy.txt " ) ) ; }
#[ test ] fn test_2dedac14 ( ) { str ( include_str! ( " test-resources/omnibus/2DEDAC14.bitsy.txt " ) ) ; }
#[ test ] fn test_2e2987d0 ( ) { str ( include_str! ( " test-resources/omnibus/2E2987D0.bitsy.txt " ) ) ; }
#[ test ] fn test_2e60f4c3 ( ) { str ( include_str! ( " test-resources/omnibus/2E60F4C3.bitsy.txt " ) ) ; }
#[ test ] fn test_30960393 ( ) { str ( include_str! ( " test-resources/omnibus/30960393.bitsy.txt " ) ) ; }
#[ test ] fn test_31102002 ( ) { str ( include_str! ( " test-resources/omnibus/31102002.bitsy.txt " ) ) ; }
/// todo fix this - a triple-quoted dialogue becomes empty
#[ test ] fn test_313d1314 ( ) { str ( include_str! ( " test-resources/omnibus/313D1314.bitsy.txt " ) ) ; }
#[ test ] fn test_317415f3 ( ) { str ( include_str! ( " test-resources/omnibus/317415F3.bitsy.txt " ) ) ; }
#[ test ] fn test_31c0d44b ( ) { str ( include_str! ( " test-resources/omnibus/31C0D44B.bitsy.txt " ) ) ; }
#[ test ] fn test_32051452 ( ) { str ( include_str! ( " test-resources/omnibus/32051452.bitsy.txt " ) ) ; }
#[ test ] fn test_333db34a ( ) { str ( include_str! ( " test-resources/omnibus/333DB34A.bitsy.txt " ) ) ; }
#[ test ] fn test_3388d883 ( ) { str ( include_str! ( " test-resources/omnibus/3388D883.bitsy.txt " ) ) ; }
#[ test ] fn test_34e2323e ( ) { str ( include_str! ( " test-resources/omnibus/34E2323E.bitsy.txt " ) ) ; }
#[ test ] fn test_3595b459 ( ) { str ( include_str! ( " test-resources/omnibus/3595B459.bitsy.txt " ) ) ; }
#[ test ] fn test_35c079d5 ( ) { str ( include_str! ( " test-resources/omnibus/35C079D5.bitsy.txt " ) ) ; }
#[ test ] fn test_362c9f8e ( ) { str ( include_str! ( " test-resources/omnibus/362C9F8E.bitsy.txt " ) ) ; }
#[ test ] fn test_362f1e1d ( ) { str ( include_str! ( " test-resources/omnibus/362F1E1D.bitsy.txt " ) ) ; }
#[ test ] fn test_3664c1b9 ( ) { str ( include_str! ( " test-resources/omnibus/3664C1B9.bitsy.txt " ) ) ; }
#[ test ] fn test_36db0432 ( ) { str ( include_str! ( " test-resources/omnibus/36DB0432.bitsy.txt " ) ) ; }
#[ test ] fn test_3895271d ( ) { str ( include_str! ( " test-resources/omnibus/3895271D.bitsy.txt " ) ) ; }
#[ test ] fn test_38bedab0 ( ) { str ( include_str! ( " test-resources/omnibus/38BEDAB0.bitsy.txt " ) ) ; }
#[ test ] fn test_38d19484 ( ) { str ( include_str! ( " test-resources/omnibus/38D19484.bitsy.txt " ) ) ; }
#[ test ] fn test_39eff3d0 ( ) { str ( include_str! ( " test-resources/omnibus/39EFF3D0.bitsy.txt " ) ) ; }
#[ test ] fn test_3a3e8773 ( ) { str ( include_str! ( " test-resources/omnibus/3A3E8773.bitsy.txt " ) ) ; }
#[ test ] fn test_3a68df96 ( ) { str ( include_str! ( " test-resources/omnibus/3A68DF96.bitsy.txt " ) ) ; }
#[ test ] fn test_3a6a0fee ( ) { str ( include_str! ( " test-resources/omnibus/3A6A0FEE.bitsy.txt " ) ) ; }
#[ test ] fn test_3ad39018 ( ) { str ( include_str! ( " test-resources/omnibus/3AD39018.bitsy.txt " ) ) ; }
#[ test ] fn test_3adc3b2b ( ) { str ( include_str! ( " test-resources/omnibus/3ADC3B2B.bitsy.txt " ) ) ; }
#[ test ] fn test_3b376b08 ( ) { str ( include_str! ( " test-resources/omnibus/3B376B08.bitsy.txt " ) ) ; }
#[ test ] fn test_3bdc8a5e ( ) { str ( include_str! ( " test-resources/omnibus/3BDC8A5E.bitsy.txt " ) ) ; }
#[ test ] fn test_3c2225e3 ( ) { str ( include_str! ( " test-resources/omnibus/3C2225E3.bitsy.txt " ) ) ; }
#[ test ] fn test_3c5ba8f0 ( ) { str ( include_str! ( " test-resources/omnibus/3C5BA8F0.bitsy.txt " ) ) ; }
#[ test ] fn test_3c712f1b ( ) { str ( include_str! ( " test-resources/omnibus/3C712F1B.bitsy.txt " ) ) ; }
#[ test ] fn test_3c814196 ( ) { str ( include_str! ( " test-resources/omnibus/3C814196.bitsy.txt " ) ) ; }
#[ test ] fn test_3c8c19dd ( ) { str ( include_str! ( " test-resources/omnibus/3C8C19DD.bitsy.txt " ) ) ; }
#[ test ] fn test_3e8c3022 ( ) { str ( include_str! ( " test-resources/omnibus/3E8C3022.bitsy.txt " ) ) ; }
#[ test ] fn test_3f6eaaeb ( ) { str ( include_str! ( " test-resources/omnibus/3F6EAAEB.bitsy.txt " ) ) ; }
#[ test ] fn test_3fc83ee6 ( ) { str ( include_str! ( " test-resources/omnibus/3FC83EE6.bitsy.txt " ) ) ; }
#[ test ] fn test_400a3a88 ( ) { str ( include_str! ( " test-resources/omnibus/400A3A88.bitsy.txt " ) ) ; }
#[ test ] fn test_40610fb3 ( ) { str ( include_str! ( " test-resources/omnibus/40610FB3.bitsy.txt " ) ) ; }
#[ test ] fn test_40e58b03 ( ) { str ( include_str! ( " test-resources/omnibus/40E58B03.bitsy.txt " ) ) ; }
#[ test ] fn test_41b01b3a ( ) { str ( include_str! ( " test-resources/omnibus/41B01B3A.bitsy.txt " ) ) ; }
#[ test ] fn test_41c30128 ( ) { str ( include_str! ( " test-resources/omnibus/41C30128.bitsy.txt " ) ) ; }
#[ test ] fn test_42492af1 ( ) { str ( include_str! ( " test-resources/omnibus/42492AF1.bitsy.txt " ) ) ; }
#[ test ] fn test_428d89c7 ( ) { str ( include_str! ( " test-resources/omnibus/428D89C7.bitsy.txt " ) ) ; }
#[ test ] fn test_42c251ea ( ) { str ( include_str! ( " test-resources/omnibus/42C251EA.bitsy.txt " ) ) ; }
#[ test ] fn test_439ba1a5 ( ) { str ( include_str! ( " test-resources/omnibus/439BA1A5.bitsy.txt " ) ) ; }
#[ test ] fn test_43abaffd ( ) { str ( include_str! ( " test-resources/omnibus/43ABAFFD.bitsy.txt " ) ) ; }
#[ test ] fn test_43d24c5a ( ) { str ( include_str! ( " test-resources/omnibus/43D24C5A.bitsy.txt " ) ) ; }
#[ test ] fn test_4483029c ( ) { str ( include_str! ( " test-resources/omnibus/4483029C.bitsy.txt " ) ) ; }
#[ test ] fn test_4527a047 ( ) { str ( include_str! ( " test-resources/omnibus/4527A047.bitsy.txt " ) ) ; }
#[ test ] fn test_45ef9604 ( ) { str ( include_str! ( " test-resources/omnibus/45EF9604.bitsy.txt " ) ) ; }
#[ test ] fn test_45f1225d ( ) { str ( include_str! ( " test-resources/omnibus/45F1225D.bitsy.txt " ) ) ; }
#[ test ] fn test_46062786 ( ) { str ( include_str! ( " test-resources/omnibus/46062786.bitsy.txt " ) ) ; }
#[ test ] fn test_465efaa2 ( ) { str ( include_str! ( " test-resources/omnibus/465EFAA2.bitsy.txt " ) ) ; }
#[ test ] fn test_46a699a5 ( ) { str ( include_str! ( " test-resources/omnibus/46A699A5.bitsy.txt " ) ) ; }
#[ test ] fn test_46eddcc6 ( ) { str ( include_str! ( " test-resources/omnibus/46EDDCC6.bitsy.txt " ) ) ; }
#[ test ] fn test_4759957f ( ) { str ( include_str! ( " test-resources/omnibus/4759957F.bitsy.txt " ) ) ; }
#[ test ] fn test_477a3731 ( ) { str ( include_str! ( " test-resources/omnibus/477A3731.bitsy.txt " ) ) ; }
#[ test ] fn test_4782f065 ( ) { str ( include_str! ( " test-resources/omnibus/4782F065.bitsy.txt " ) ) ; }
#[ test ] fn test_479de864 ( ) { str ( include_str! ( " test-resources/omnibus/479DE864.bitsy.txt " ) ) ; }
#[ test ] fn test_4941e947 ( ) { str ( include_str! ( " test-resources/omnibus/4941E947.bitsy.txt " ) ) ; }
#[ test ] fn test_49f56f40 ( ) { str ( include_str! ( " test-resources/omnibus/49F56F40.bitsy.txt " ) ) ; }
#[ test ] fn test_4ab34220 ( ) { str ( include_str! ( " test-resources/omnibus/4AB34220.bitsy.txt " ) ) ; }
#[ test ] fn test_4ac058fe ( ) { str ( include_str! ( " test-resources/omnibus/4AC058FE.bitsy.txt " ) ) ; }
#[ test ] fn test_4b1e6a14 ( ) { str ( include_str! ( " test-resources/omnibus/4B1E6A14.bitsy.txt " ) ) ; }
#[ test ] fn test_4c8ad705 ( ) { str ( include_str! ( " test-resources/omnibus/4C8AD705.bitsy.txt " ) ) ; }
#[ test ] fn test_4ddd9930 ( ) { str ( include_str! ( " test-resources/omnibus/4DDD9930.bitsy.txt " ) ) ; }
#[ test ] fn test_4ec3ae6f ( ) { str ( include_str! ( " test-resources/omnibus/4EC3AE6F.bitsy.txt " ) ) ; }
#[ test ] fn test_50830651 ( ) { str ( include_str! ( " test-resources/omnibus/50830651.bitsy.txt " ) ) ; }
#[ test ] fn test_512739f5 ( ) { str ( include_str! ( " test-resources/omnibus/512739F5.bitsy.txt " ) ) ; }
#[ test ] fn test_51dd0198 ( ) { str ( include_str! ( " test-resources/omnibus/51DD0198.bitsy.txt " ) ) ; }
#[ test ] fn test_52629e0f ( ) { str ( include_str! ( " test-resources/omnibus/52629E0F.bitsy.txt " ) ) ; }
#[ test ] fn test_5295f9e7 ( ) { str ( include_str! ( " test-resources/omnibus/5295F9E7.bitsy.txt " ) ) ; }
#[ test ] fn test_52ad1de7 ( ) { str ( include_str! ( " test-resources/omnibus/52AD1DE7.bitsy.txt " ) ) ; }
#[ test ] fn test_53b2a153 ( ) { str ( include_str! ( " test-resources/omnibus/53B2A153.bitsy.txt " ) ) ; }
#[ test ] fn test_54bc2ac4 ( ) { str ( include_str! ( " test-resources/omnibus/54BC2AC4.bitsy.txt " ) ) ; }
#[ test ] fn test_553ecb46 ( ) { str ( include_str! ( " test-resources/omnibus/553ECB46.bitsy.txt " ) ) ; }
#[ test ] fn test_555e198c ( ) { str ( include_str! ( " test-resources/omnibus/555E198C.bitsy.txt " ) ) ; }
#[ test ] fn test_55eb6535 ( ) { str ( include_str! ( " test-resources/omnibus/55EB6535.bitsy.txt " ) ) ; }
#[ test ] fn test_5784dfef ( ) { str ( include_str! ( " test-resources/omnibus/5784DFEF.bitsy.txt " ) ) ; }
#[ test ] fn test_5951f457 ( ) { str ( include_str! ( " test-resources/omnibus/5951F457.bitsy.txt " ) ) ; }
#[ test ] fn test_59b42152 ( ) { str ( include_str! ( " test-resources/omnibus/59B42152.bitsy.txt " ) ) ; }
#[ test ] fn test_59cfbdf2 ( ) { str ( include_str! ( " test-resources/omnibus/59CFBDF2.bitsy.txt " ) ) ; }
#[ test ] fn test_59ea005d ( ) { str ( include_str! ( " test-resources/omnibus/59EA005D.bitsy.txt " ) ) ; }
#[ test ] fn test_5b337d40 ( ) { str ( include_str! ( " test-resources/omnibus/5B337D40.bitsy.txt " ) ) ; }
#[ test ] fn test_5ba59ab1 ( ) { str ( include_str! ( " test-resources/omnibus/5BA59AB1.bitsy.txt " ) ) ; }
#[ test ] fn test_5bcfd3b5 ( ) { str ( include_str! ( " test-resources/omnibus/5BCFD3B5.bitsy.txt " ) ) ; }
#[ test ] fn test_5d01e40d ( ) { str ( include_str! ( " test-resources/omnibus/5D01E40D.bitsy.txt " ) ) ; }
#[ test ] fn test_5d0b4ec3 ( ) { str ( include_str! ( " test-resources/omnibus/5D0B4EC3.bitsy.txt " ) ) ; }
#[ test ] fn test_5d2b55a9 ( ) { str ( include_str! ( " test-resources/omnibus/5D2B55A9.bitsy.txt " ) ) ; }
#[ test ] fn test_5d8aa0e5 ( ) { str ( include_str! ( " test-resources/omnibus/5D8AA0E5.bitsy.txt " ) ) ; }
#[ test ] fn test_5f836d20 ( ) { str ( include_str! ( " test-resources/omnibus/5F836D20.bitsy.txt " ) ) ; }
#[ test ] fn test_5f977747 ( ) { str ( include_str! ( " test-resources/omnibus/5F977747.bitsy.txt " ) ) ; }
#[ test ] fn test_5fd6fa60 ( ) { str ( include_str! ( " test-resources/omnibus/5FD6FA60.bitsy.txt " ) ) ; }
#[ test ] fn test_60289d2b ( ) { str ( include_str! ( " test-resources/omnibus/60289D2B.bitsy.txt " ) ) ; }
#[ test ] fn test_604ed83b ( ) { str ( include_str! ( " test-resources/omnibus/604ED83B.bitsy.txt " ) ) ; }
#[ test ] fn test_605e57d3 ( ) { str ( include_str! ( " test-resources/omnibus/605E57D3.bitsy.txt " ) ) ; }
#[ test ] fn test_60a5c704 ( ) { str ( include_str! ( " test-resources/omnibus/60A5C704.bitsy.txt " ) ) ; }
#[ test ] fn test_610930d7 ( ) { str ( include_str! ( " test-resources/omnibus/610930D7.bitsy.txt " ) ) ; }
#[ test ] fn test_61d4df26 ( ) { str ( include_str! ( " test-resources/omnibus/61D4DF26.bitsy.txt " ) ) ; }
#[ test ] fn test_6227c33b ( ) { str ( include_str! ( " test-resources/omnibus/6227C33B.bitsy.txt " ) ) ; }
#[ test ] fn test_629744da ( ) { str ( include_str! ( " test-resources/omnibus/629744DA.bitsy.txt " ) ) ; }
#[ test ] fn test_640b5e37 ( ) { str ( include_str! ( " test-resources/omnibus/640B5E37.bitsy.txt " ) ) ; }
#[ test ] fn test_643e26e7 ( ) { str ( include_str! ( " test-resources/omnibus/643E26E7.bitsy.txt " ) ) ; }
#[ test ] fn test_657029d2 ( ) { str ( include_str! ( " test-resources/omnibus/657029D2.bitsy.txt " ) ) ; }
#[ test ] fn test_65821da2 ( ) { str ( include_str! ( " test-resources/omnibus/65821DA2.bitsy.txt " ) ) ; }
#[ test ] fn test_65c2b499 ( ) { str ( include_str! ( " test-resources/omnibus/65C2B499.bitsy.txt " ) ) ; }
#[ test ] fn test_66888415 ( ) { str ( include_str! ( " test-resources/omnibus/66888415.bitsy.txt " ) ) ; }
#[ test ] fn test_68005325 ( ) { str ( include_str! ( " test-resources/omnibus/68005325.bitsy.txt " ) ) ; }
#[ test ] fn test_682993ac ( ) { str ( include_str! ( " test-resources/omnibus/682993AC.bitsy.txt " ) ) ; }
#[ test ] fn test_69e5adde ( ) { str ( include_str! ( " test-resources/omnibus/69E5ADDE.bitsy.txt " ) ) ; }
#[ test ] fn test_6a3083f8 ( ) { str ( include_str! ( " test-resources/omnibus/6A3083F8.bitsy.txt " ) ) ; }
#[ test ] fn test_6a934776 ( ) { str ( include_str! ( " test-resources/omnibus/6A934776.bitsy.txt " ) ) ; }
#[ test ] fn test_6c3d076c ( ) { str ( include_str! ( " test-resources/omnibus/6C3D076C.bitsy.txt " ) ) ; }
#[ test ] fn test_6c491749 ( ) { str ( include_str! ( " test-resources/omnibus/6C491749.bitsy.txt " ) ) ; }
#[ test ] fn test_6cf290c7 ( ) { str ( include_str! ( " test-resources/omnibus/6CF290C7.bitsy.txt " ) ) ; }
#[ test ] fn test_6d9a411a ( ) { str ( include_str! ( " test-resources/omnibus/6D9A411A.bitsy.txt " ) ) ; }
#[ test ] fn test_6e835b7d ( ) { str ( include_str! ( " test-resources/omnibus/6E835B7D.bitsy.txt " ) ) ; }
#[ test ] fn test_6f136b0b ( ) { str ( include_str! ( " test-resources/omnibus/6F136B0B.bitsy.txt " ) ) ; }
#[ test ] fn test_70e9483e ( ) { str ( include_str! ( " test-resources/omnibus/70E9483E.bitsy.txt " ) ) ; }
#[ test ] fn test_70ea1ca6 ( ) { str ( include_str! ( " test-resources/omnibus/70EA1CA6.bitsy.txt " ) ) ; }
#[ test ] fn test_710f4731 ( ) { str ( include_str! ( " test-resources/omnibus/710F4731.bitsy.txt " ) ) ; }
#[ test ] fn test_7129037b ( ) { str ( include_str! ( " test-resources/omnibus/7129037B.bitsy.txt " ) ) ; }
#[ test ] fn test_725b9251 ( ) { str ( include_str! ( " test-resources/omnibus/725B9251.bitsy.txt " ) ) ; }
#[ test ] fn test_73d4bbde ( ) { str ( include_str! ( " test-resources/omnibus/73D4BBDE.bitsy.txt " ) ) ; }
#[ test ] fn test_74685d79 ( ) { str ( include_str! ( " test-resources/omnibus/74685D79.bitsy.txt " ) ) ; }
#[ test ] fn test_74802fe3 ( ) { str ( include_str! ( " test-resources/omnibus/74802FE3.bitsy.txt " ) ) ; }
#[ test ] fn test_748ea164 ( ) { str ( include_str! ( " test-resources/omnibus/748EA164.bitsy.txt " ) ) ; }
#[ test ] fn test_748f77b5 ( ) { str ( include_str! ( " test-resources/omnibus/748F77B5.bitsy.txt " ) ) ; }
#[ test ] fn test_74e0f6ef ( ) { str ( include_str! ( " test-resources/omnibus/74E0F6EF.bitsy.txt " ) ) ; }
#[ test ] fn test_750d339d ( ) { str ( include_str! ( " test-resources/omnibus/750D339D.bitsy.txt " ) ) ; }
#[ test ] fn test_755da50e ( ) { str ( include_str! ( " test-resources/omnibus/755DA50E.bitsy.txt " ) ) ; }
#[ test ] fn test_75b61d2b ( ) { str ( include_str! ( " test-resources/omnibus/75B61D2B.bitsy.txt " ) ) ; }
#[ test ] fn test_75e04506 ( ) { str ( include_str! ( " test-resources/omnibus/75E04506.bitsy.txt " ) ) ; }
#[ test ] fn test_7698b32e ( ) { str ( include_str! ( " test-resources/omnibus/7698B32E.bitsy.txt " ) ) ; }
#[ test ] fn test_7769825b ( ) { str ( include_str! ( " test-resources/omnibus/7769825B.bitsy.txt " ) ) ; }
#[ test ] fn test_77c2a64a ( ) { str ( include_str! ( " test-resources/omnibus/77C2A64A.bitsy.txt " ) ) ; }
#[ test ] fn test_78a27fa0 ( ) { str ( include_str! ( " test-resources/omnibus/78A27FA0.bitsy.txt " ) ) ; }
#[ test ] fn test_79ff4e48 ( ) { str ( include_str! ( " test-resources/omnibus/79FF4E48.bitsy.txt " ) ) ; }
#[ test ] fn test_7ac4008f ( ) { str ( include_str! ( " test-resources/omnibus/7AC4008F.bitsy.txt " ) ) ; }
#[ test ] fn test_7adf3924 ( ) { str ( include_str! ( " test-resources/omnibus/7ADF3924.bitsy.txt " ) ) ; }
#[ test ] fn test_7bc643cf ( ) { str ( include_str! ( " test-resources/omnibus/7BC643CF.bitsy.txt " ) ) ; }
#[ test ] fn test_7bd4c1e0 ( ) { str ( include_str! ( " test-resources/omnibus/7BD4C1E0.bitsy.txt " ) ) ; }
#[ test ] fn test_7c0211e8 ( ) { str ( include_str! ( " test-resources/omnibus/7C0211E8.bitsy.txt " ) ) ; }
#[ test ] fn test_7c57e56e ( ) { str ( include_str! ( " test-resources/omnibus/7C57E56E.bitsy.txt " ) ) ; }
#[ test ] fn test_7ca8eff9 ( ) { str ( include_str! ( " test-resources/omnibus/7CA8EFF9.bitsy.txt " ) ) ; }
#[ test ] fn test_7cb22bec ( ) { str ( include_str! ( " test-resources/omnibus/7CB22BEC.bitsy.txt " ) ) ; }
#[ test ] fn test_7cc82262 ( ) { str ( include_str! ( " test-resources/omnibus/7CC82262.bitsy.txt " ) ) ; }
#[ test ] fn test_7dc64c62 ( ) { str ( include_str! ( " test-resources/omnibus/7DC64C62.bitsy.txt " ) ) ; }
#[ test ] fn test_7df36da4 ( ) { str ( include_str! ( " test-resources/omnibus/7DF36DA4.bitsy.txt " ) ) ; }
#[ test ] fn test_7f1599d1 ( ) { str ( include_str! ( " test-resources/omnibus/7F1599D1.bitsy.txt " ) ) ; }
#[ test ] fn test_7f607cfa ( ) { str ( include_str! ( " test-resources/omnibus/7F607CFA.bitsy.txt " ) ) ; }
#[ test ] fn test_7fbbc26e ( ) { str ( include_str! ( " test-resources/omnibus/7FBBC26E.bitsy.txt " ) ) ; }
#[ test ] fn test_7fcf6d96 ( ) { str ( include_str! ( " test-resources/omnibus/7FCF6D96.bitsy.txt " ) ) ; }
#[ test ] fn test_801ae85a ( ) { str ( include_str! ( " test-resources/omnibus/801AE85A.bitsy.txt " ) ) ; }
#[ test ] fn test_8025521d ( ) { str ( include_str! ( " test-resources/omnibus/8025521D.bitsy.txt " ) ) ; }
#[ test ] fn test_8059564a ( ) { str ( include_str! ( " test-resources/omnibus/8059564A.bitsy.txt " ) ) ; }
#[ test ] fn test_807805cc ( ) { str ( include_str! ( " test-resources/omnibus/807805CC.bitsy.txt " ) ) ; }
#[ test ] fn test_808ea54b ( ) { str ( include_str! ( " test-resources/omnibus/808EA54B.bitsy.txt " ) ) ; }
#[ test ] fn test_81875aec ( ) { str ( include_str! ( " test-resources/omnibus/81875AEC.bitsy.txt " ) ) ; }
#[ test ] fn test_82dde16f ( ) { str ( include_str! ( " test-resources/omnibus/82DDE16F.bitsy.txt " ) ) ; }
#[ test ] fn test_83402ede ( ) { str ( include_str! ( " test-resources/omnibus/83402EDE.bitsy.txt " ) ) ; }
#[ test ] fn test_83db1fec ( ) { str ( include_str! ( " test-resources/omnibus/83DB1FEC.bitsy.txt " ) ) ; }
#[ test ] fn test_84ee182e ( ) { str ( include_str! ( " test-resources/omnibus/84EE182E.bitsy.txt " ) ) ; }
#[ test ] fn test_85319efc ( ) { str ( include_str! ( " test-resources/omnibus/85319EFC.bitsy.txt " ) ) ; }
#[ test ] fn test_85d7ae4c ( ) { str ( include_str! ( " test-resources/omnibus/85D7AE4C.bitsy.txt " ) ) ; }
#[ test ] fn test_865d97a2 ( ) { str ( include_str! ( " test-resources/omnibus/865D97A2.bitsy.txt " ) ) ; }
#[ test ] fn test_86cc164a ( ) { str ( include_str! ( " test-resources/omnibus/86CC164A.bitsy.txt " ) ) ; }
#[ test ] fn test_8749dd6f ( ) { str ( include_str! ( " test-resources/omnibus/8749DD6F.bitsy.txt " ) ) ; }
#[ test ] fn test_874b5bd3 ( ) { str ( include_str! ( " test-resources/omnibus/874B5BD3.bitsy.txt " ) ) ; }
#[ test ] fn test_87d1fe22 ( ) { str ( include_str! ( " test-resources/omnibus/87D1FE22.bitsy.txt " ) ) ; }
#[ test ] fn test_8831a581 ( ) { str ( include_str! ( " test-resources/omnibus/8831A581.bitsy.txt " ) ) ; }
#[ test ] fn test_88465670 ( ) { str ( include_str! ( " test-resources/omnibus/88465670.bitsy.txt " ) ) ; }
#[ test ] fn test_88599170 ( ) { str ( include_str! ( " test-resources/omnibus/88599170.bitsy.txt " ) ) ; }
#[ test ] fn test_89551e9a ( ) { str ( include_str! ( " test-resources/omnibus/89551E9A.bitsy.txt " ) ) ; }
#[ test ] fn test_89711e3e ( ) { str ( include_str! ( " test-resources/omnibus/89711E3E.bitsy.txt " ) ) ; }
#[ test ] fn test_89c6ed6a ( ) { str ( include_str! ( " test-resources/omnibus/89C6ED6A.bitsy.txt " ) ) ; }
#[ test ] fn test_8c057b81 ( ) { str ( include_str! ( " test-resources/omnibus/8C057B81.bitsy.txt " ) ) ; }
#[ test ] fn test_8cabe4c9 ( ) { str ( include_str! ( " test-resources/omnibus/8CABE4C9.bitsy.txt " ) ) ; }
#[ test ] fn test_8d020129 ( ) { str ( include_str! ( " test-resources/omnibus/8D020129.bitsy.txt " ) ) ; }
#[ test ] fn test_8da05131 ( ) { str ( include_str! ( " test-resources/omnibus/8DA05131.bitsy.txt " ) ) ; }
#[ test ] fn test_8db7cf07 ( ) { str ( include_str! ( " test-resources/omnibus/8DB7CF07.bitsy.txt " ) ) ; }
#[ test ] fn test_8e4187fd ( ) { str ( include_str! ( " test-resources/omnibus/8E4187FD.bitsy.txt " ) ) ; }
#[ test ] fn test_8ef8319b ( ) { str ( include_str! ( " test-resources/omnibus/8EF8319B.bitsy.txt " ) ) ; }
#[ test ] fn test_8f7a6fb5 ( ) { str ( include_str! ( " test-resources/omnibus/8F7A6FB5.bitsy.txt " ) ) ; }
#[ test ] fn test_8fedb06b ( ) { str ( include_str! ( " test-resources/omnibus/8FEDB06B.bitsy.txt " ) ) ; }
#[ test ] fn test_9074c1cd ( ) { str ( include_str! ( " test-resources/omnibus/9074C1CD.bitsy.txt " ) ) ; }
#[ test ] fn test_924d038f ( ) { str ( include_str! ( " test-resources/omnibus/924D038F.bitsy.txt " ) ) ; }
#[ test ] fn test_926a622e ( ) { str ( include_str! ( " test-resources/omnibus/926A622E.bitsy.txt " ) ) ; }
#[ test ] fn test_92d589b9 ( ) { str ( include_str! ( " test-resources/omnibus/92D589B9.bitsy.txt " ) ) ; }
#[ test ] fn test_9372ade8 ( ) { str ( include_str! ( " test-resources/omnibus/9372ADE8.bitsy.txt " ) ) ; }
#[ test ] fn test_938468ba ( ) { str ( include_str! ( " test-resources/omnibus/938468BA.bitsy.txt " ) ) ; }
#[ test ] fn test_94612f67 ( ) { str ( include_str! ( " test-resources/omnibus/94612F67.bitsy.txt " ) ) ; }
#[ test ] fn test_946e85b3 ( ) { str ( include_str! ( " test-resources/omnibus/946E85B3.bitsy.txt " ) ) ; }
#[ test ] fn test_947c7544 ( ) { str ( include_str! ( " test-resources/omnibus/947C7544.bitsy.txt " ) ) ; }
#[ test ] fn test_9484fd34 ( ) { str ( include_str! ( " test-resources/omnibus/9484FD34.bitsy.txt " ) ) ; }
#[ test ] fn test_94943e5c ( ) { str ( include_str! ( " test-resources/omnibus/94943E5C.bitsy.txt " ) ) ; }
#[ test ] fn test_94fd6705 ( ) { str ( include_str! ( " test-resources/omnibus/94FD6705.bitsy.txt " ) ) ; }
#[ test ] fn test_955b75c9 ( ) { str ( include_str! ( " test-resources/omnibus/955B75C9.bitsy.txt " ) ) ; }
#[ test ] fn test_967dfe88 ( ) { str ( include_str! ( " test-resources/omnibus/967DFE88.bitsy.txt " ) ) ; }
#[ test ] fn test_9724bf5e ( ) { str ( include_str! ( " test-resources/omnibus/9724BF5E.bitsy.txt " ) ) ; }
#[ test ] fn test_974aa125 ( ) { str ( include_str! ( " test-resources/omnibus/974AA125.bitsy.txt " ) ) ; }
#[ test ] fn test_976e1d47 ( ) { str ( include_str! ( " test-resources/omnibus/976E1D47.bitsy.txt " ) ) ; }
#[ test ] fn test_97812dac ( ) { str ( include_str! ( " test-resources/omnibus/97812DAC.bitsy.txt " ) ) ; }
#[ test ] fn test_98509df4 ( ) { str ( include_str! ( " test-resources/omnibus/98509DF4.bitsy.txt " ) ) ; }
#[ test ] fn test_98b2b460 ( ) { str ( include_str! ( " test-resources/omnibus/98B2B460.bitsy.txt " ) ) ; }
#[ test ] fn test_9927728d ( ) { str ( include_str! ( " test-resources/omnibus/9927728D.bitsy.txt " ) ) ; }
#[ test ] fn test_99d3df43 ( ) { str ( include_str! ( " test-resources/omnibus/99D3DF43.bitsy.txt " ) ) ; }
#[ test ] fn test_99ea5769 ( ) { str ( include_str! ( " test-resources/omnibus/99EA5769.bitsy.txt " ) ) ; }
#[ test ] fn test_9acccd68 ( ) { str ( include_str! ( " test-resources/omnibus/9ACCCD68.bitsy.txt " ) ) ; }
#[ test ] fn test_9ad2a574 ( ) { str ( include_str! ( " test-resources/omnibus/9AD2A574.bitsy.txt " ) ) ; }
#[ test ] fn test_9b411e31 ( ) { str ( include_str! ( " test-resources/omnibus/9B411E31.bitsy.txt " ) ) ; }
#[ test ] fn test_9c8ecf36 ( ) { str ( include_str! ( " test-resources/omnibus/9C8ECF36.bitsy.txt " ) ) ; }
#[ test ] fn test_9da3b70d ( ) { str ( include_str! ( " test-resources/omnibus/9DA3B70D.bitsy.txt " ) ) ; }
#[ test ] fn test_9dad710d ( ) { str ( include_str! ( " test-resources/omnibus/9DAD710D.bitsy.txt " ) ) ; }
#[ test ] fn test_9de4c3ba ( ) { str ( include_str! ( " test-resources/omnibus/9DE4C3BA.bitsy.txt " ) ) ; }
#[ test ] fn test_9f39737d ( ) { str ( include_str! ( " test-resources/omnibus/9F39737D.bitsy.txt " ) ) ; }
#[ test ] fn test_9fcfddbc ( ) { str ( include_str! ( " test-resources/omnibus/9FCFDDBC.bitsy.txt " ) ) ; }
#[ test ] fn test_a09d5907 ( ) { str ( include_str! ( " test-resources/omnibus/A09D5907.bitsy.txt " ) ) ; }
#[ test ] fn test_a19f89f1 ( ) { str ( include_str! ( " test-resources/omnibus/A19F89F1.bitsy.txt " ) ) ; }
#[ test ] fn test_a1ae038d ( ) { str ( include_str! ( " test-resources/omnibus/A1AE038D.bitsy.txt " ) ) ; }
#[ test ] fn test_a1b12872 ( ) { str ( include_str! ( " test-resources/omnibus/A1B12872.bitsy.txt " ) ) ; }
#[ test ] fn test_a3b29805 ( ) { str ( include_str! ( " test-resources/omnibus/A3B29805.bitsy.txt " ) ) ; }
#[ test ] fn test_a418d2ab ( ) { str ( include_str! ( " test-resources/omnibus/A418D2AB.bitsy.txt " ) ) ; }
#[ test ] fn test_a5816c9c ( ) { str ( include_str! ( " test-resources/omnibus/A5816C9C.bitsy.txt " ) ) ; }
#[ test ] fn test_a5cfeed6 ( ) { str ( include_str! ( " test-resources/omnibus/A5CFEED6.bitsy.txt " ) ) ; }
#[ test ] fn test_a7183583 ( ) { str ( include_str! ( " test-resources/omnibus/A7183583.bitsy.txt " ) ) ; }
#[ test ] fn test_a7df882e ( ) { str ( include_str! ( " test-resources/omnibus/A7DF882E.bitsy.txt " ) ) ; }
#[ test ] fn test_a7f51ae4 ( ) { str ( include_str! ( " test-resources/omnibus/A7F51AE4.bitsy.txt " ) ) ; }
#[ test ] fn test_a82f4321 ( ) { str ( include_str! ( " test-resources/omnibus/A82F4321.bitsy.txt " ) ) ; }
#[ test ] fn test_a8d107b2 ( ) { str ( include_str! ( " test-resources/omnibus/A8D107B2.bitsy.txt " ) ) ; }
#[ test ] fn test_aa007e54 ( ) { str ( include_str! ( " test-resources/omnibus/AA007E54.bitsy.txt " ) ) ; }
#[ test ] fn test_ab368cec ( ) { str ( include_str! ( " test-resources/omnibus/AB368CEC.bitsy.txt " ) ) ; }
#[ test ] fn test_ac7e9f07 ( ) { str ( include_str! ( " test-resources/omnibus/AC7E9F07.bitsy.txt " ) ) ; }
#[ test ] fn test_ad97fbc3 ( ) { str ( include_str! ( " test-resources/omnibus/AD97FBC3.bitsy.txt " ) ) ; }
#[ test ] fn test_adb7c913 ( ) { str ( include_str! ( " test-resources/omnibus/ADB7C913.bitsy.txt " ) ) ; }
#[ test ] fn test_afa24079 ( ) { str ( include_str! ( " test-resources/omnibus/AFA24079.bitsy.txt " ) ) ; }
#[ test ] fn test_b16974f7 ( ) { str ( include_str! ( " test-resources/omnibus/B16974F7.bitsy.txt " ) ) ; }
#[ test ] fn test_b34f07d5 ( ) { str ( include_str! ( " test-resources/omnibus/B34F07D5.bitsy.txt " ) ) ; }
#[ test ] fn test_b53d6e92 ( ) { str ( include_str! ( " test-resources/omnibus/B53D6E92.bitsy.txt " ) ) ; }
#[ test ] fn test_b545feac ( ) { str ( include_str! ( " test-resources/omnibus/B545FEAC.bitsy.txt " ) ) ; }
#[ test ] fn test_b6370aff ( ) { str ( include_str! ( " test-resources/omnibus/B6370AFF.bitsy.txt " ) ) ; }
#[ test ] fn test_b74f7f7a ( ) { str ( include_str! ( " test-resources/omnibus/B74F7F7A.bitsy.txt " ) ) ; }
#[ test ] fn test_b7b61117 ( ) { str ( include_str! ( " test-resources/omnibus/B7B61117.bitsy.txt " ) ) ; }
#[ test ] fn test_b831fb24 ( ) { str ( include_str! ( " test-resources/omnibus/B831FB24.bitsy.txt " ) ) ; }
#[ test ] fn test_b8e10418 ( ) { str ( include_str! ( " test-resources/omnibus/B8E10418.bitsy.txt " ) ) ; }
#[ test ] fn test_b9e61bc6 ( ) { str ( include_str! ( " test-resources/omnibus/B9E61BC6.bitsy.txt " ) ) ; }
#[ test ] fn test_ba102197 ( ) { str ( include_str! ( " test-resources/omnibus/BA102197.bitsy.txt " ) ) ; }
#[ test ] fn test_bb5d0d6c ( ) { str ( include_str! ( " test-resources/omnibus/BB5D0D6C.bitsy.txt " ) ) ; }
#[ test ] fn test_bbb98596 ( ) { str ( include_str! ( " test-resources/omnibus/BBB98596.bitsy.txt " ) ) ; }
#[ test ] fn test_bc0dce5c ( ) { str ( include_str! ( " test-resources/omnibus/BC0DCE5C.bitsy.txt " ) ) ; }
#[ test ] fn test_bc8b3e64 ( ) { str ( include_str! ( " test-resources/omnibus/BC8B3E64.bitsy.txt " ) ) ; }
#[ test ] fn test_bcc99eb5 ( ) { str ( include_str! ( " test-resources/omnibus/BCC99EB5.bitsy.txt " ) ) ; }
#[ test ] fn test_bd621b6d ( ) { str ( include_str! ( " test-resources/omnibus/BD621B6D.bitsy.txt " ) ) ; }
#[ test ] fn test_bdd57b7d ( ) { str ( include_str! ( " test-resources/omnibus/BDD57B7D.bitsy.txt " ) ) ; }
#[ test ] fn test_bebd5115 ( ) { str ( include_str! ( " test-resources/omnibus/BEBD5115.bitsy.txt " ) ) ; }
#[ test ] fn test_bf15da66 ( ) { str ( include_str! ( " test-resources/omnibus/BF15DA66.bitsy.txt " ) ) ; }
#[ test ] fn test_c03befc8 ( ) { str ( include_str! ( " test-resources/omnibus/C03BEFC8.bitsy.txt " ) ) ; }
#[ test ] fn test_c0be7f65 ( ) { str ( include_str! ( " test-resources/omnibus/C0BE7F65.bitsy.txt " ) ) ; }
#[ test ] fn test_c1dc0328 ( ) { str ( include_str! ( " test-resources/omnibus/C1DC0328.bitsy.txt " ) ) ; }
#[ test ] fn test_c2493877 ( ) { str ( include_str! ( " test-resources/omnibus/C2493877.bitsy.txt " ) ) ; }
#[ test ] fn test_c2ef387a ( ) { str ( include_str! ( " test-resources/omnibus/C2EF387A.bitsy.txt " ) ) ; }
#[ test ] fn test_c353f7cf ( ) { str ( include_str! ( " test-resources/omnibus/C353F7CF.bitsy.txt " ) ) ; }
#[ test ] fn test_c49c625e ( ) { str ( include_str! ( " test-resources/omnibus/C49C625E.bitsy.txt " ) ) ; }
#[ test ] fn test_c50eb781 ( ) { str ( include_str! ( " test-resources/omnibus/C50EB781.bitsy.txt " ) ) ; }
#[ test ] fn test_c5cf3fda ( ) { str ( include_str! ( " test-resources/omnibus/C5CF3FDA.bitsy.txt " ) ) ; }
#[ test ] fn test_c6617fa2 ( ) { str ( include_str! ( " test-resources/omnibus/C6617FA2.bitsy.txt " ) ) ; }
#[ test ] fn test_c673ea1b ( ) { str ( include_str! ( " test-resources/omnibus/C673EA1B.bitsy.txt " ) ) ; }
#[ test ] fn test_c6e7831c ( ) { str ( include_str! ( " test-resources/omnibus/C6E7831C.bitsy.txt " ) ) ; }
#[ test ] fn test_c8421383 ( ) { str ( include_str! ( " test-resources/omnibus/C8421383.bitsy.txt " ) ) ; }
#[ test ] fn test_c872d239 ( ) { str ( include_str! ( " test-resources/omnibus/C872D239.bitsy.txt " ) ) ; }
#[ test ] fn test_c87e0b9f ( ) { str ( include_str! ( " test-resources/omnibus/C87E0B9F.bitsy.txt " ) ) ; }
#[ test ] fn test_c8c0d6bd ( ) { str ( include_str! ( " test-resources/omnibus/C8C0D6BD.bitsy.txt " ) ) ; }
#[ test ] fn test_c9ad2be0 ( ) { str ( include_str! ( " test-resources/omnibus/C9AD2BE0.bitsy.txt " ) ) ; }
#[ test ] fn test_cb70cded ( ) { str ( include_str! ( " test-resources/omnibus/CB70CDED.bitsy.txt " ) ) ; }
#[ test ] fn test_cbb105d7 ( ) { str ( include_str! ( " test-resources/omnibus/CBB105D7.bitsy.txt " ) ) ; }
#[ test ] fn test_cbbfb107 ( ) { str ( include_str! ( " test-resources/omnibus/CBBFB107.bitsy.txt " ) ) ; }
#[ test ] fn test_cbf9a0c0 ( ) { str ( include_str! ( " test-resources/omnibus/CBF9A0C0.bitsy.txt " ) ) ; }
#[ test ] fn test_cc34457e ( ) { str ( include_str! ( " test-resources/omnibus/CC34457E.bitsy.txt " ) ) ; }
#[ test ] fn test_cd609e8e ( ) { str ( include_str! ( " test-resources/omnibus/CD609E8E.bitsy.txt " ) ) ; }
#[ test ] fn test_ce0512b2 ( ) { str ( include_str! ( " test-resources/omnibus/CE0512B2.bitsy.txt " ) ) ; }
#[ test ] fn test_ce59a086 ( ) { str ( include_str! ( " test-resources/omnibus/CE59A086.bitsy.txt " ) ) ; }
#[ test ] fn test_cf890145 ( ) { str ( include_str! ( " test-resources/omnibus/CF890145.bitsy.txt " ) ) ; }
#[ test ] fn test_cf89e555 ( ) { str ( include_str! ( " test-resources/omnibus/CF89E555.bitsy.txt " ) ) ; }
#[ test ] fn test_cfbe5bdf ( ) { str ( include_str! ( " test-resources/omnibus/CFBE5BDF.bitsy.txt " ) ) ; }
#[ test ] fn test_cfe62f11 ( ) { str ( include_str! ( " test-resources/omnibus/CFE62F11.bitsy.txt " ) ) ; }
#[ test ] fn test_cff98f1a ( ) { str ( include_str! ( " test-resources/omnibus/CFF98F1A.bitsy.txt " ) ) ; }
#[ test ] fn test_d07caf2a ( ) { str ( include_str! ( " test-resources/omnibus/D07CAF2A.bitsy.txt " ) ) ; }
#[ test ] fn test_d173c9c5 ( ) { str ( include_str! ( " test-resources/omnibus/D173C9C5.bitsy.txt " ) ) ; }
#[ test ] fn test_d1be479b ( ) { str ( include_str! ( " test-resources/omnibus/D1BE479B.bitsy.txt " ) ) ; }
#[ test ] fn test_d1fb278a ( ) { str ( include_str! ( " test-resources/omnibus/D1FB278A.bitsy.txt " ) ) ; }
#[ test ] fn test_d2a4d690 ( ) { str ( include_str! ( " test-resources/omnibus/D2A4D690.bitsy.txt " ) ) ; }
#[ test ] fn test_d336f626 ( ) { str ( include_str! ( " test-resources/omnibus/D336F626.bitsy.txt " ) ) ; }
#[ test ] fn test_d35b2e27 ( ) { str ( include_str! ( " test-resources/omnibus/D35B2E27.bitsy.txt " ) ) ; }
#[ test ] fn test_d373f018 ( ) { str ( include_str! ( " test-resources/omnibus/D373F018.bitsy.txt " ) ) ; }
#[ test ] fn test_d3a5c1d7 ( ) { str ( include_str! ( " test-resources/omnibus/D3A5C1D7.bitsy.txt " ) ) ; }
#[ test ] fn test_d498eefa ( ) { str ( include_str! ( " test-resources/omnibus/D498EEFA.bitsy.txt " ) ) ; }
#[ test ] fn test_d53b7c03 ( ) { str ( include_str! ( " test-resources/omnibus/D53B7C03.bitsy.txt " ) ) ; }
#[ test ] fn test_d60e6d7f ( ) { str ( include_str! ( " test-resources/omnibus/D60E6D7F.bitsy.txt " ) ) ; }
#[ test ] fn test_d8480dc7 ( ) { str ( include_str! ( " test-resources/omnibus/D8480DC7.bitsy.txt " ) ) ; }
#[ test ] fn test_d84cbfff ( ) { str ( include_str! ( " test-resources/omnibus/D84CBFFF.bitsy.txt " ) ) ; }
#[ test ] fn test_d903b657 ( ) { str ( include_str! ( " test-resources/omnibus/D903B657.bitsy.txt " ) ) ; }
#[ test ] fn test_da70c62c ( ) { str ( include_str! ( " test-resources/omnibus/DA70C62C.bitsy.txt " ) ) ; }
#[ test ] fn test_da88c287 ( ) { str ( include_str! ( " test-resources/omnibus/DA88C287.bitsy.txt " ) ) ; }
#[ test ] fn test_dabc1b16 ( ) { str ( include_str! ( " test-resources/omnibus/DABC1B16.bitsy.txt " ) ) ; }
#[ test ] fn test_db59a848 ( ) { str ( include_str! ( " test-resources/omnibus/DB59A848.bitsy.txt " ) ) ; }
#[ test ] fn test_db74abe2 ( ) { str ( include_str! ( " test-resources/omnibus/DB74ABE2.bitsy.txt " ) ) ; }
#[ test ] fn test_dbd5d375 ( ) { str ( include_str! ( " test-resources/omnibus/DBD5D375.bitsy.txt " ) ) ; }
#[ test ] fn test_dc053b1a ( ) { str ( include_str! ( " test-resources/omnibus/DC053B1A.bitsy.txt " ) ) ; }
#[ test ] fn test_dcdd7569 ( ) { str ( include_str! ( " test-resources/omnibus/DCDD7569.bitsy.txt " ) ) ; }
#[ test ] fn test_dd5be55b ( ) { str ( include_str! ( " test-resources/omnibus/DD5BE55B.bitsy.txt " ) ) ; }
#[ test ] fn test_de25b125 ( ) { str ( include_str! ( " test-resources/omnibus/DE25B125.bitsy.txt " ) ) ; }
#[ test ] fn test_ded097eb ( ) { str ( include_str! ( " test-resources/omnibus/DED097EB.bitsy.txt " ) ) ; }
#[ test ] fn test_df0ba198 ( ) { str ( include_str! ( " test-resources/omnibus/DF0BA198.bitsy.txt " ) ) ; }
#[ test ] fn test_df7f0379 ( ) { str ( include_str! ( " test-resources/omnibus/DF7F0379.bitsy.txt " ) ) ; }
#[ test ] fn test_e058a61f ( ) { str ( include_str! ( " test-resources/omnibus/E058A61F.bitsy.txt " ) ) ; }
#[ test ] fn test_e1c8834b ( ) { str ( include_str! ( " test-resources/omnibus/E1C8834B.bitsy.txt " ) ) ; }
#[ test ] fn test_e1cd8743 ( ) { str ( include_str! ( " test-resources/omnibus/E1CD8743.bitsy.txt " ) ) ; }
#[ test ] fn test_e1f19987 ( ) { str ( include_str! ( " test-resources/omnibus/E1F19987.bitsy.txt " ) ) ; }
#[ test ] fn test_e2417e83 ( ) { str ( include_str! ( " test-resources/omnibus/E2417E83.bitsy.txt " ) ) ; }
#[ test ] fn test_e363f335 ( ) { str ( include_str! ( " test-resources/omnibus/E363F335.bitsy.txt " ) ) ; }
#[ test ] fn test_e46023b3 ( ) { str ( include_str! ( " test-resources/omnibus/E46023B3.bitsy.txt " ) ) ; }
#[ test ] fn test_e48dccdb ( ) { str ( include_str! ( " test-resources/omnibus/E48DCCDB.bitsy.txt " ) ) ; }
#[ test ] fn test_e4a85876 ( ) { str ( include_str! ( " test-resources/omnibus/E4A85876.bitsy.txt " ) ) ; }
#[ test ] fn test_e5d4285e ( ) { str ( include_str! ( " test-resources/omnibus/E5D4285E.bitsy.txt " ) ) ; }
#[ test ] fn test_e6030df0 ( ) { str ( include_str! ( " test-resources/omnibus/E6030DF0.bitsy.txt " ) ) ; }
#[ test ] fn test_e69239ef ( ) { str ( include_str! ( " test-resources/omnibus/E69239EF.bitsy.txt " ) ) ; }
#[ test ] fn test_e971b9fd ( ) { str ( include_str! ( " test-resources/omnibus/E971B9FD.bitsy.txt " ) ) ; }
#[ test ] fn test_e9bd845a ( ) { str ( include_str! ( " test-resources/omnibus/E9BD845A.bitsy.txt " ) ) ; }
#[ test ] fn test_eadd856d ( ) { str ( include_str! ( " test-resources/omnibus/EADD856D.bitsy.txt " ) ) ; }
#[ test ] fn test_eb09383e ( ) { str ( include_str! ( " test-resources/omnibus/EB09383E.bitsy.txt " ) ) ; }
#[ test ] fn test_ec269334 ( ) { str ( include_str! ( " test-resources/omnibus/EC269334.bitsy.txt " ) ) ; }
#[ test ] fn test_ec8e4594 ( ) { str ( include_str! ( " test-resources/omnibus/EC8E4594.bitsy.txt " ) ) ; }
#[ test ] fn test_ecd56a4f ( ) { str ( include_str! ( " test-resources/omnibus/ECD56A4F.bitsy.txt " ) ) ; }
#[ test ] fn test_ed47e5ed ( ) { str ( include_str! ( " test-resources/omnibus/ED47E5ED.bitsy.txt " ) ) ; }
#[ test ] fn test_ed62fac9 ( ) { str ( include_str! ( " test-resources/omnibus/ED62FAC9.bitsy.txt " ) ) ; }
#[ test ] fn test_edb03d05 ( ) { str ( include_str! ( " test-resources/omnibus/EDB03D05.bitsy.txt " ) ) ; }
#[ test ] fn test_ee642f55 ( ) { str ( include_str! ( " test-resources/omnibus/EE642F55.bitsy.txt " ) ) ; }
#[ test ] fn test_ef26697e ( ) { str ( include_str! ( " test-resources/omnibus/EF26697E.bitsy.txt " ) ) ; }
#[ test ] fn test_ef763825 ( ) { str ( include_str! ( " test-resources/omnibus/EF763825.bitsy.txt " ) ) ; }
#[ test ] fn test_f02bd788 ( ) { str ( include_str! ( " test-resources/omnibus/F02BD788.bitsy.txt " ) ) ; }
#[ test ] fn test_f22c1fa2 ( ) { str ( include_str! ( " test-resources/omnibus/F22C1FA2.bitsy.txt " ) ) ; }
#[ test ] fn test_f31ca90b ( ) { str ( include_str! ( " test-resources/omnibus/F31CA90B.bitsy.txt " ) ) ; }
#[ test ] fn test_f38c5522 ( ) { str ( include_str! ( " test-resources/omnibus/F38C5522.bitsy.txt " ) ) ; }
#[ test ] fn test_f3af62e7 ( ) { str ( include_str! ( " test-resources/omnibus/F3AF62E7.bitsy.txt " ) ) ; }
#[ test ] fn test_f3e61fc1 ( ) { str ( include_str! ( " test-resources/omnibus/F3E61FC1.bitsy.txt " ) ) ; }
#[ test ] fn test_f52b510f ( ) { str ( include_str! ( " test-resources/omnibus/F52B510F.bitsy.txt " ) ) ; }
#[ test ] fn test_f60a4b5f ( ) { str ( include_str! ( " test-resources/omnibus/F60A4B5F.bitsy.txt " ) ) ; }
#[ test ] fn test_f64d8936 ( ) { str ( include_str! ( " test-resources/omnibus/F64D8936.bitsy.txt " ) ) ; }
#[ test ] fn test_f673def5 ( ) { str ( include_str! ( " test-resources/omnibus/F673DEF5.bitsy.txt " ) ) ; }
#[ test ] fn test_f6f5e3fb ( ) { str ( include_str! ( " test-resources/omnibus/F6F5E3FB.bitsy.txt " ) ) ; }
#[ test ] fn test_f712f2f3 ( ) { str ( include_str! ( " test-resources/omnibus/F712F2F3.bitsy.txt " ) ) ; }
#[ test ] fn test_f79d5368 ( ) { str ( include_str! ( " test-resources/omnibus/F79D5368.bitsy.txt " ) ) ; }
#[ test ] fn test_f8d7930c ( ) { str ( include_str! ( " test-resources/omnibus/F8D7930C.bitsy.txt " ) ) ; }
#[ test ] fn test_f9b6e61f ( ) { str ( include_str! ( " test-resources/omnibus/F9B6E61F.bitsy.txt " ) ) ; }
#[ test ] fn test_fa4eb7c6 ( ) { str ( include_str! ( " test-resources/omnibus/FA4EB7C6.bitsy.txt " ) ) ; }
#[ test ] fn test_fc8a7441 ( ) { str ( include_str! ( " test-resources/omnibus/FC8A7441.bitsy.txt " ) ) ; }
#[ test ] fn test_fcd95029 ( ) { str ( include_str! ( " test-resources/omnibus/FCD95029.bitsy.txt " ) ) ; }
#[ test ] fn test_fe53ef82 ( ) { str ( include_str! ( " test-resources/omnibus/FE53EF82.bitsy.txt " ) ) ; }
#[ test ] fn test_fe6547de ( ) { str ( include_str! ( " test-resources/omnibus/FE6547DE.bitsy.txt " ) ) ; }
#[ test ] fn test_ff3857ae ( ) { str ( include_str! ( " test-resources/omnibus/FF3857AE.bitsy.txt " ) ) ; }
#[ test ] fn test_ff7bcf9c ( ) { str ( include_str! ( " test-resources/omnibus/FF7BCF9C.bitsy.txt " ) ) ; }
}