Skip to main content

Home/ HealthcareMetadata/ Group items tagged tests

Rss Feed Group items tagged

Malcolm McRoberts

Verifying Database Code by Using SQL Server Unit Tests - 0 views

  • Visual Studio Editions' Support for SQL Server Unit Tests The SQL Server unit tests feature, which was added in the December 2012 update of SQL Server Data Tools, allows you to create, modify, and run SQL Server unit tests in Visual Studio 2010 Professional and Visual Studio 2012 Professional and higher editions.
Malcolm McRoberts

tcm: Importing Automated Tests into Test Cases - 0 views

  • tcm testcase /import /collection:http://<Team Foundation Server Name>:8080/tfs/<team project collection name> /teamproject:DinnerNow /storage:TestProject1.dll /category:"ShoppingCart&SmokeTest" /syncsuite:3
Malcolm McRoberts

QUnit - 0 views

  • QUnit is a powerful, easy-to-use JavaScript unit testing framework. It's used by the jQuery, jQuery UI and jQuery Mobile projects and is capable of testing any generic JavaScript code, including itself!
Malcolm McRoberts

PhantomJS | PhantomJS - 0 views

  • PhantomJS is a headless WebKit scriptable with a JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.
  • Page Automation Access and manipulate webpages with the standard DOM API, or with usual libraries like jQuery. Learn more
  • Headless Website Testing Run functional tests with frameworks such as Jasmine, QUnit, Mocha, Capybara, WebDriver, and many others. Learn more
Malcolm McRoberts

Databases integration testing strategies with Python | Julien Danjou - 0 views

  • import unittestimport osimport sqlalchemy import myapp class TestDB(unittest.TestCase): def setUp(self): url = os.getenv("DB_TEST_URL") if not url: self.skipTest("No database URL set") self.engine = sqlalchemy.create_engine(url)  def test_foobar(self): self.assertTrue(myapp.store_integer(self.engine, 42))
  • import unittestimport osimport sqlalchemy import myapp class TestDB(unittest.TestCase): def setUp(self): url = os.getenv("DB_TEST_URL") if not url: self.skipTest("No database URL set") self.engine = sqlalchemy.create_engine(url)  def test_foobar(self): self.assertTrue(myapp.store_integer(self.engine, 42))
  • import unittestimport osimport sqlalchemy import myapp class TestDB(unittest.TestCase): def setUp(self): url = os.getenv("DB_TEST_URL") if not url: self.skipTest("No database URL set") self.engine = sqlalchemy.create_engine(url)  def test_foobar(self): self.assertTrue(myapp.store_integer(self.engine, 42))
  • ...3 more annotations...
  • import unittestimport osimport sqlalchemy import myapp class TestDB(unittest.TestCase): def setUp(self): url = os.getenv("DB_TEST_URL") if not url: self.skipTest("No database URL set") self.engine = sqlalchemy.create_engine(url)  def test_foobar(self): self.assertTrue(myapp.store_integer(self.engine, 42))
  • import unittestimport osimport sqlalchemy import myapp class TestDB(unittest.TestCase): def setUp(self): url = os.getenv("DB_TEST_URL") if not url: self.skipTest("No database URL set") self.engine = sqlalchemy.create_engine(url)  def test_foobar(self): self.assertTrue(myapp.store_integer(self.engine, 42))
  • ("DB_TEST_URL") if not url: self.skipTest("No database URL set") self.engine = sqlalchemy.create_engine(url)  def test_foobar(self): self.assertTrue(myapp.store_integer(self.engine, 42))
Malcolm McRoberts

tappy - TAP tools for Python - tappy 1.1 documentation - 0 views

  • tappy provides tools for working with the Test Anything Protocol (TAP) in Python. tappy generates TAP output for your unittest test cases. You can use the TAP output files with a tool like the Jenkins TAP plugin or any other TAP consumer
Malcolm McRoberts

TSQLUnit - 0 views

  • TSQLUnit is a testing framework to write tests for applications written in Transact-SQL. It follows the tradition of the "xUnit" framework that is available for almost all programming languages.
Malcolm McRoberts

Issue 61 - js-test-driver - HTML Injection from separate file - Remote javascript conso... - 0 views

  • I agree with core developers, that there is no need for that to be implemented inside JsTestDriver. Everybody has slightly different needs and this would make configuration complicated. It is easy to solve in JavaScript: * request HTML page with XMLHttpRequest * extract body * inject into the body of the document under test req = new XMLHttpRequest(); req.open('GET', url, false); /* synchronous */ req.send(null); /* body element with children */ body_content = req.responseText.match(/<body[\s\S]*<\/body>/); body = document.documentElement.getElementsByTagName('body')[0]; /* body tag itself is ignored, only its children will be inserted */ body.innerHTML = body_content; } I've documented the full solution at http://www.mobile-web-consulting.de/post/4720306582/jstestdriver-html-injection-from-separate-file
Malcolm McRoberts

introduction.js - 0 views

  • asmine is a behavior-driven development framework for testing JavaScript code. It does not depend on any other JavaScript frameworks. It does not require a DOM. And it has a clean, obvious syntax so that you can easily write tests.
Malcolm McRoberts

Hermes - Selenium For Humans | Free software downloads at SourceForge.net - 0 views

  • Access clear summary reports which allow you to drill down to screenshots, stack traces and video
  • Easily integrated with Continuous Delivery tools like TeamCity and Hudson
  • Facilitates all team usability and avoids silosBuilt for Agile - make your tests easily re-factored and robust to change
Malcolm McRoberts

Python Tools for Visual Studio - Documentation - 0 views

  • Python Tools for Visual Studio includes support for discovering, executing and debugging unit tests. This allows you to author your tests and run them without having to switch to a command prompt.
Malcolm McRoberts

Import Test result from CppUnit to TFS reports - 0 views

  • XML file is a CppUnit result. It would not be easy for me to convert this file to a trx file. BUT i found a quite nice solution. First i use the new MSBuild target XslTransformation and transform the result to an jUnit XML result file. I then used the PublishJUnit task from the Ant integration to transform the new XML file to trx files and publish them in the TFS.
Malcolm McRoberts

TAP Plugin - Jenkins - Jenkins Wiki - 0 views

  • This plug-in adds support to TAP test result files to Jenkins. It lets you specify an ant-like pattern for a directory that contains your TAP files. TAP Plug-in has only one dependency, tap4j - a TAP implementation for Java. 
‹ Previous 21 - 40 of 62 Next › Last »
Showing 20 items per page