Skip to main content

Home/ HealthcareMetadata/ Group items tagged tests

Rss Feed Group items tagged

Malcolm McRoberts

Running automated tests from the command line - 0 views

  • Visual Studio 2012 includes the following command-line tools for testing purposes: VSTest.Console.exe You can use the VSTest.Console.exe program to run automated unit and coded UI tests from a command line. VSTest.Console.exe is optimized for performance and is used in place of MSTest.exe in Visual Studio 2012. MSTest.exe You can use the MSTest.exe program to run automated tests in a test assembly from a command line. MSTest is used for load tests and for compatibility with Visual Studio 2010 test projects. MSTest can also be used to view the test results from these test runs, save the results to disk, and save your results to Team Foundation Server. TCM.exe Tcm.exe is a command-line utility that lets you perform the following tasks: Import automated tests into a test plan Run tests that are part of a test plan from the command line View a list of test items and their corresponding IDs to use when you import tests or run tests You can also use tcm.exe to run test cases with associated automation from the command line using a test environment.
Malcolm McRoberts

Running Tests in Microsoft Test Manager - 0 views

  • Requirements Visual Studio Ultimate, Visual Studio Premium, Visual Studio Test Professional
  • After you have created any of the following types of automated tests by using Visual Studio, you can use Microsoft Test Manager or Visual Studio to run the tests: Unit tests. Coded UI tests. Load tests.
  • Running automated tests: You can run tests directly from Visual Studio, from Microsoft Test Manager, from Team Foundation Build, or from the command line. You can use mstest.exe to run your automated tests from the command line, or you can use tcm.exe to import your test methods into test cases. You can then run the test cases for specific configurations from the command line and save the results for the appropriate test plan.
Malcolm McRoberts

This is Stuff: JavaScript Testing with JSTestDriver - 0 views

  • Js-test-driver is an open source JavaScript unit tests runner written in Java. The project was started at Google and is under active development. It is available under Apache License 2.0 license
  • s-test-driver is able to run from command line and reports results to the standard output. As a result, it is possible to fully automate JavaScript tests and run them on a continuous integration server.
  • s-test-driver is able to run from command line and reports results to the standard output. As a result, it is possible to fully automate JavaScript tests and run them on a continuous integration server.
  • ...8 more annotations...
  • s-test-driver is able to run from command line and reports results to the standard output. As a result, it is possible to fully automate JavaScript tests and run them on a continuous integration server
  • Continuous Integration and MavenIntegration with Jenkins continuous integration server (previously known as Hudson) was described by Christian Johansen on his blog.
  • Continuous Integration and MavenIntegration with Jenkins continuous integration server (previously known as Hudson) was described by Christian Johansen on his blog.
  • Continuous Integration and MavenIntegration with Jenkins continuous integration server (previously known as Hudson) was described by Christian Johansen on his blog.
  • Maven integration can be achieved with jstd-maven-plugin. The plugin assumes that the server with captured browsers is already running somewhere. It is not able to start the server by itself.
  • Maven integration can be achieved with jstd-maven-plugin. The plugin assumes that the server with captured browsers is already running somewhere. It is not able to start the server by itself.
  • Maven integration can be achieved with jstd-maven-plugin. The plugin assumes that the server with captured browsers is already running somewhere. It is not able to start the server by itself.
  • Maven integration can be achieved with jstd-maven-plugin. The plugin assumes that the server with captured browsers is already running somewhere. It is not able to start the server by itself.
Malcolm McRoberts

Javascript Unit Tests on Team Foundation Service with Chutzpah - Microsoft Application ... - 0 views

  • Significant investments were made in Visual Studio 2012 Unit Testing to make it extensible. A number of frameworks and test runners have built adapters for Visual Studio. Peter Provost maintains a list of Plugins here. For Javascript Unit Testing in Visual Studio, Matthew Mannela has released Chutzpah, an open source Javascript Test Runner.  Chutzpah has a test adapter for Visual Studio 2012. With this adapter, you can run QUnit & Jasmine tests in Visual Studio.
Malcolm McRoberts

.net - Jenkins on Windows and GUI Tests without RDC - Stack Overflow - 0 views

  • 1 down vote I have a Jenkins cluster running different kinds of GUI testing, win32, swing, selenium. They are running thousands of tests in unattended manner 24x7
  • The solution so far is install VNC Server (I am using UltraVNC) as service and make sure it is started during log on.
  • Auto logon - there is a tool autologon.exe in SysInternalsSuite, run it on your slave
  • ...5 more annotations...
  • Auto register slave - What you need is Swarm Plugin - https://wiki.jenkins-ci.org/display/JENKINS/Swarm+Plugin . Write a simple batch and place a shortcuts in your startup folder. Everytime your machine autologon, it is automatically registered as slave.
  • I needed to setup a UltraVNC Server
  • RDC creates and destroys desktops. This causes the visual tests to go nuts - their desktops are being wiped and recreated. That method of visual testing will not work when RDC is involved.
  • Since our test machines were VMWare VMs, we connected via the VM Console,
  • autologon.exe <user> <domain> <password> REM Here to make sure the logonCount is properly generated REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0xFFFF /f start /min java -jar I:\CDC\jenkins\swarm-client-1.9-jar-with-dependencies.jar -executors 1 -fsroot c:\Jenkins -labels "Prod Win7 %ComputerName%" -master <Jenkins URL> -name farm-%ComputerName% -username <username> -password <password>
Malcolm McRoberts

SQL Test - Unit Testing for SQL Server - 0 views

  • If you want to do test-driven development for databases, SQL Test is the place to start. It lets you write database unit tests in T-SQL and run them in SQL Server Management Studio.
Malcolm McRoberts

Running Automated Tests from the Command Line - 0 views

  • You can use the MSTest.exe program to run automated tests in a test assembly from a command line. You can also view the test results from these test runs, save the results to disk, and save your results to Team Foundation Server.You can also use tcm.exe to run test cases with associated automation from the command line using a test environment.
Malcolm McRoberts

SQL Test - Unit Testing for SQL Server - 0 views

  • $369 per user
  • If you want to do test-driven development for databases, SQL Test is the place to start. It lets you write database unit tests in T-SQL and run them in SQL Server Management Studio.
Malcolm McRoberts

Setting Up Test Controllers in Lab Environments - 0 views

  • This topic describes how to install and configure a test controller, and how to configure test agents so that you can run tests in a lab environment using Microsoft Test Manager.
Malcolm McRoberts

Improving the User Experience of Automated Integration Testing - NYTimes.com - NYTimes.com - 0 views

  • We can collect the data when we run tests through Hudson, but that doesn’t make the output much more readable, doesn’t capture metadata (such as which environment configuration the tests ran against) and doesn’t even give useful historic snapshot data, as the jobs run different suites of tests based on parameters.
Malcolm McRoberts

JSTest.NET - Browserless JavaScript Unit Test Runner - Home - 0 views

  • JSTest is focused on testing JavaScript, and NOT on UI validation. Unlike tools like JsTestDriver etc, JSTest can be run inside the unit testing framework of your choice; specifically MSTest, NUnit, xUnit etc.
  • JSTest is focused on testing JavaScript, and NOT on UI validation. Unlike tools like JsTestDriver etc, JSTest can be run inside the unit testing framework of your choice; specifically MSTest, NUnit, xUnit etc.
  •  
    "ell as require an int"
Malcolm McRoberts

javascript - Event listeners & js-test-driver? - Stack Overflow - 0 views

  • You can use jQuery's load() function to load the HTML page you want to test. In your JSTestDriver test function: $('html').load('pageToLoad.html', function() { // load was performed - run your asserts here now }); However, since this uses a callback function, you might have to use an Async Test Case.
Malcolm McRoberts

Mocha - the fun, simple, flexible JavaScript test framework - 0 views

  • Mocha is a feature-rich JavaScript test framework running on node.js and the browser, making asynchronous testing simple and fun. Mocha tests run serially, allowing for flexible and accurate reporting, while mapping uncaught exceptions to the correct test cases.
Malcolm McRoberts

YUI Test - YUI Library - 0 views

  • YUI Test is a complete testing framework for JavaScript and Web applications. You can use the simple JavaScript syntax to write unit tests that can be run in web browsers or on the command line, as well as functional tests to be run in web browsers. Additional tools that build on top of the JavaScript library's core functionality allow integration with build systems.
Malcolm McRoberts

Using Sikuli to test legacy Flash | Technical Testing - Hints, walkthroughs and how-to'... - 0 views

  • With loads of legacy Flash/Flex code where test automation support is limited or in most cases even non-existing there is only so much that can be done in forms of automation.
  • In short, unless you want to read it from Project Sikuli. Sikuli can match a predefined image to a section of the screen that is VERY similar to predefined image, ‘best fit’. So for example if you take a small screenshot of an object in you Flash implementation and save it as an image Sikuli can then be used to interact with this object, clicking on it, dragging it, checking if it can find it on the page asf..
Malcolm McRoberts

Record and run a web performance test - 0 views

  • Web performance tests are included in load tests to measure the performance of your web application under the stress of multiple users. You record a web performance test by browsing a website as if you were the end user.
Malcolm McRoberts

js-test-driver - Remote javascript console - Google Project Hosting - 0 views

  • The goal of JsTestDriver is to build a JavaScript test runner which: easily integrates with continuous builds systems and allows running tests on multiple browsers quickly to ease TDD style development.
Malcolm McRoberts

Apache JMeter - Apache JMeter™ - 0 views

  • The Apache JMeter™ desktop application is open source software, a 100% pure Java application designed to load test functional behavior and measure performance. It was originally designed for testing Web Applications but has since expanded to other test functions
Malcolm McRoberts

tSQLt - Database Unit Testing for SQL Server | Database Unit Testing for SQL Server - 0 views

  • What is tSQLt? tSQLt is a database unit testing framework for Microsoft SQL Server. tSQLt is compatible with SQL Server 2005 (service pack 2 required) and above on all editions.
1 - 20 of 62 Next › Last »
Showing 20 items per page