From 6c70b0eb78fb39ec220d8b3177ee960598e8d0b9 Mon Sep 17 00:00:00 2001 From: Dima Granetchi Date: Sat, 15 Nov 2014 16:29:54 +0200 Subject: [PATCH] 3 pending tests --- test/ForceTest.hx | 19 +++++++++++++++++++ test/InlineTest.hx | 20 ++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 test/ForceTest.hx create mode 100644 test/InlineTest.hx diff --git a/test/ForceTest.hx b/test/ForceTest.hx new file mode 100644 index 0000000..c8abe95 --- /dev/null +++ b/test/ForceTest.hx @@ -0,0 +1,19 @@ +package ; + +import bindx.Bind; +import bindx.IBindable; +import buddy.BuddySuite; + +using buddy.Should; + +class ForceTest extends BuddySuite { + + public function new() { + + describe("Using @:bindable(force=true)", { + + it("bindx should correct work with readonly fields"); + + }); + } +} \ No newline at end of file diff --git a/test/InlineTest.hx b/test/InlineTest.hx new file mode 100644 index 0000000..efbafe3 --- /dev/null +++ b/test/InlineTest.hx @@ -0,0 +1,20 @@ +package ; + +import bindx.Bind; +import bindx.IBindable; +import buddy.BuddySuite; + +using buddy.Should; + +class InlineTest extends BuddySuite { + + public function new() { + + describe("Using @:bindable(inlineSetter=true/false, inlineSignalGetter=true/false)", { + + it("bindx should generate inline setter"); + it("bindx should generate inline signal getter"); + + }); + } +} \ No newline at end of file