2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-06-27 14:53:11 +00:00
This commit is contained in:
2019-08-08 22:02:31 +03:00
parent 1bf0bc32ae
commit 1f76327ced
6 changed files with 259 additions and 66 deletions

26
test/main.dart Normal file
View File

@ -0,0 +1,26 @@
import "package:test/test.dart";
import 'package:esiur/esiur.dart';
main()
{
test("Connect to server", () async {
// connect to the server
var x = await Warehouse.get("iip://localhost:5000/db/my", {"username": "demo", "password": "1234"});
// get property
print(x.Level);
// listen to event
x.on("LevelUp", (v,y,z)=>print("Level up ${v} ${y}${z}"));
// use await
print("Added successfully ${await x.Add(40)}");
// use named arguments
print(await x.Add(value: 20));
// test chunks
x.Stream(10).chunk((c)=>print(c));
// property setter
x.Level += 900;
print("Done");
});
}