Skip to content

Commit 0fa0d7a

Browse files
committed
fixing tests
1 parent e06a9a2 commit 0fa0d7a

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

test/Properties/DataView.purs

+14-11
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import Data.Typelevel.Num (class Nat, D1, D2, D4, D8)
1313
import Data.UInt (UInt)
1414
import Data.Float32 (Float32) as F
1515
import Data.Vec (head) as Vec
16+
import Data.Symbol (class IsSymbol)
1617
import Effect (Effect)
1718
import Effect.Console (log)
1819
import Effect.Ref (Ref)
@@ -30,74 +31,76 @@ dataViewTests count = do
3031
placingAValueIsThereTests DV.LE count
3132

3233

33-
type TestableViewF a b n t q =
34+
type TestableViewF a name b n t q =
3435
Show t
3536
=> Eq t
3637
=> Ord t
3738
=> Semiring t
3839
=> BytesPerValue a b
40+
=> DV.ShowArrayViewType a name
41+
=> IsSymbol name
3942
=> Nat b
4043
=> DV.DataView a t
4144
=> WithOffsetAndValue n a t
4245
-> q
4346

4447

45-
overAll :: forall q n. Testable q => Nat n => Ref Int -> (forall a b t. TestableViewF a b n t q) -> Effect Unit
48+
overAll :: forall q n. Testable q => Nat n => Ref Int -> (forall a name b t. TestableViewF a name b n t q) -> Effect Unit
4649
overAll count f = do
4750
void (Ref.modify (\x -> x + 1) count)
4851
log " - Uint32"
4952
quickCheckGen $
50-
let f' :: TestableViewF Uint32 D4 n UInt q
53+
let f' :: TestableViewF Uint32 "Uint32" D4 n UInt q
5154
f' = f
5255
in f' <$> genWithOffsetAndValue genDataView genUint32
5356

5457
log " - Uint16"
5558
quickCheckGen $
56-
let f' :: TestableViewF Uint16 D2 n UInt q
59+
let f' :: TestableViewF Uint16 "Uint16" D2 n UInt q
5760
f' = f
5861
in f' <$> genWithOffsetAndValue genDataView genUint16
5962

6063
log " - Uint8"
6164
quickCheckGen $
62-
let f' :: TestableViewF Uint8 D1 n UInt q
65+
let f' :: TestableViewF Uint8 "Uint8" D1 n UInt q
6366
f' = f
6467
in f' <$> genWithOffsetAndValue genDataView genUint8
6568

6669
log " - Int32"
6770
quickCheckGen $
68-
let f' :: TestableViewF Int32 D4 n Int q
71+
let f' :: TestableViewF Int32 "Int32" D4 n Int q
6972
f' = f
7073
in f' <$> genWithOffsetAndValue genDataView genInt32
7174

7275
log " - Int16"
7376
quickCheckGen $
74-
let f' :: TestableViewF Int16 D2 n Int q
77+
let f' :: TestableViewF Int16 "Int16" D2 n Int q
7578
f' = f
7679
in f' <$> genWithOffsetAndValue genDataView genInt16
7780

7881
log " - Int8"
7982
quickCheckGen $
80-
let f' :: TestableViewF Int8 D1 n Int q
83+
let f' :: TestableViewF Int8 "Int8" D1 n Int q
8184
f' = f
8285
in f' <$> genWithOffsetAndValue genDataView genInt8
8386

8487
log " - Float32"
8588
quickCheckGen $
86-
let f' :: TestableViewF Float32 D4 n F.Float32 q
89+
let f' :: TestableViewF Float32 "Float32" D4 n F.Float32 q
8790
f' = f
8891
in f' <$> genWithOffsetAndValue genDataView genFloat32
8992

9093
log " - Float64"
9194
quickCheckGen $
92-
let f' :: TestableViewF Float64 D8 n Number q
95+
let f' :: TestableViewF Float64 "Float64" D8 n Number q
9396
f' = f
9497
in f' <$> genWithOffsetAndValue genDataView genFloat64
9598

9699

97100
placingAValueIsThereTests :: DV.Endian -> Ref Int -> Effect Unit
98101
placingAValueIsThereTests endian count = overAll count placingAValueIsThere
99102
where
100-
placingAValueIsThere :: forall a b t. TestableViewF a b D1 t Result
103+
placingAValueIsThere :: forall a name b t. TestableViewF a name b D1 t Result
101104
placingAValueIsThere (WithOffsetAndValue os t xs) =
102105
let o = Vec.head os
103106
prx = DV.AProxy :: DV.AProxy a

0 commit comments

Comments
 (0)