예제 #1
0
        public void CountTest()
        {
            var query    = "select count(id) from items";
            var settings = new Dictionary <string, object>
            {
                { "source", query },
            };
            var results = new AppBlocks.Apps.Data().App(settings);

            Assert.IsTrue(results.Count > 0 && !results[0].ContainsKey("Error"), !results[0].ContainsKey("Error") ? results?[0].ToString() : results?[0]?["Error"].ToString());
        }
예제 #2
0
        public void TestMethod1()
        {
            var results = new AppBlocks.Apps.Data().App();

            Assert.IsTrue(results.Count > 0);
        }