Procházet zdrojové kódy

Update unit test.

master
Savorboard před 2 roky
rodič
revize
fe977f5d50
1 změnil soubory, kde provedl 0 přidání a 3 odebrání
  1. +0
    -3
      test/DotNetCore.CAP.Test/SnowflakeIdTest.cs

+ 0
- 3
test/DotNetCore.CAP.Test/SnowflakeIdTest.cs Zobrazit soubor

@@ -15,9 +15,6 @@ namespace DotNetCore.CAP.Test
var result = instance.NextId();
var result2 = instance.NextId();

Assert.IsType<long>(result);
Assert.True(result > 0);
Assert.True(result.ToString().Length == long.MaxValue.ToString().Length);
Assert.True(result2 - result == 1);
}



Načítá se…
Zrušit
Uložit