Visual Studio locks when bringing up "Run Unit Test" vs2013

2013 Visual studio 2013.
I had been running a few simple unit tests on a large project.   Then 2013 stopped responding and said  -- please contact Microsoft.
most time the test explore never comes up.  I tried the test with a tiny project .  still same issue
this is my tiny project
 Using System.Configuration;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace UnitTestProject1
    [TestClass]
    public class UnitTest1
        [TestMethod]
        public void TestMethod1()
            Assert.AreEqual(1,1);
        [TestMethod]
        public void TestMethod2()
            Assert.AreEqual(2, 1);
Howard Davis

Hi Howard Davis,
Could you tell us the real VS2013 version you were using? We have to make sure that it supports the unit test project.
>>most time the test explore never comes up.  I tried the test with a tiny project .  still same issue
We could open the test explorer window under Test menu->Windows.
Before you run your test, please clean and rebuild your test project, and make sure no any warning or error, and then run it from the test explorer window, check the result.
In addition, you would check your task manager, and make sure that it is free before you run your tests. I mean that we have to make sure that it is not the performance issue.
But if a simple Assert method still doesn't work in your side, I doubt that it is your VS IDE issue.
Run your VS as the admin, check the result.
If possible, please repair your VS, please also install the VS2013 update 4, and then create a new test project, check the result.
Best Regards,
Jack
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Error when running unit tests

    Hi,
    I'm getting the error 'Marker id <num> not found' about 9 times out of 10 when I try to run unit tests in Flash Builder 4.5 Premium. This is happening on a new (2 weeks old) spark + mx project, with the unit test classes created in Flash Builder using the built-in tools. Using Run As or Debug does not seem to make a difference to whether the error occurs or not. I have to just keep retrying until it runs correctly.
    I am using the AS Code Coverage plugin and the FlexUnit 4.1.
    Please help as this is driving me mad!
    Thanks,
    Adam

    Here you go.  Looks like it shrunk down the libraries image though.

  • Visual Studio error when trying to open a Feature in a SharePoint Project (An exception occurred while calling 'OnImportsSatisfied')

    I am getting the following error message in both Visual Studio 2012 and Visual Studio 2013 when I try to open any "Feature" in a SharePoint 2013 project.
    An exception occurred while calling the 'OnImportsSatisfied' method on type 'Microsoft.VisualStudio.SharePoint.Designers.Package.ViewModels.FeatureViewModel'.
    (the stack trace then continues on for ages - shown in full below)
    I _think_ this started happening when I ran Windows Update recently.
    This happens for both old and new projects, both Sandbox and Farm solutions.
    I have tried:
    Removing all Windows Updates from the past week
    Removing all previous versions of Visual Studio (2012)
    Completely uninstalling and reinstalling Visual Studio (with reboots inbetween)
    Installing VS2013 Update 1
    Nothing that I do seems to fix this ..
    Full Error:
    regards
    Martin Hatch
    MCPD & MCITP SharePoint 2010
    MCTS WSS 3.0 | MOSS 2007
    www.martinhatch.com

    Hi,
    Please check that whether you have installed the Microsoft Office Developer Tools for Visual Studio 2012.
    The link below will provide more details:
    Prerequisites for creating SharePoint 2013 projects using Visual Studio 2012
    Best regards
    Patrick Liang
    TechNet Community Support

  • Running Unit Test from test manager that run bat file from command line

    Hi ,
    I am trying to run Jsystem (java framewotk) from command line using runScenario.bat thru unit test that i associated to test in test manager.
    the idea is that when i ran the automated test  from MTM - it will run the the unit test that will run the appropriate test case in java.
    i wrote the code like this : 
    using System;
    using Microsoft.VisualStudio.TestTools.UnitTesting;
    namespace UnitTestProject3
    [TestClass]
    public class UnitTest1
    [TestMethod]
    public void TestMethod1()
    try
    String command = "c:\\JSYSTEM\\runner\\runScenario.bat
    c:\\Users\\ryeshua\\Source\\Workspaces\\Auto1\\my-tests-project\\target\\classes scenarios\\feature1 RoeySetup.xml ";
    System.Diagnostics.ProcessStartInfo procStartInfo =
    new System.Diagnostics.ProcessStartInfo("cmd", "/c " + command);
    procStartInfo.RedirectStandardOutput = true;
    procStartInfo.UseShellExecute = false;
    //procStartInfo.CreateNoWindow = true;
    System.Diagnostics.Process proc = new System.Diagnostics.Process();
    proc.StartInfo = procStartInfo;
    proc.Start();
    string result = proc.StandardOutput.ReadToEnd();
    Console.WriteLine(result);
    catch (Exception objException)
    // Log the exception
    and when i ran it from visual studio it worked perfect. and update  the Jsystem logs of the junit test in the jsystem/runner/log folder.
    but when i added it to associated test and ran it from MTM - it pass but it does not update  the logs in jsystem folder.
    the problem that i dont know what is not working. i cant see the output of it when i ran from mtm but can see when i ran from VS.
    i am using VS 2013 Pro with MTM 2013.
    please advice
    Roey

    Hi Roey,
    Thank you for posting in MSDN forum.
    Based on your issue, could you please tell me how you generate the log file under the jsystem folder?
    Generally, I know that when we run unit test from VS IDE, the file will be saved into the local machine. But when we run unit test from MTM, the unit test method will be run on the test agent machine, so the file will be saved into the test agent machine.
    Therefore, I suggest you could check if you did not see the updated logs file in jsystem folder on the test agent machine.
    In addition, I suggest you could try to copy this unit test project on this test agent machine and then run the unit test method using mstest.exe in command line and then check if you can update the logs file.
    https://msdn.microsoft.com/en-us/library/ms182489.aspx?f=255&MSPPError=-2147217396
    If you have any updated message about this issue, please tell me.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Using FB 4.7 Premium cannot run unit tests

    I have a licensed version of 4.7 Premium but cannot run unit tests. The message I get says "This feature requires a Flash Builder Premium License".
    I have uninstalled Fb 4.7 and then downloaded and reinstalled. Still the same issue.
    I have verified I am running FB 4.7 Premium with this code snippet.
    if (Class(this.systemManager.getDefinitionByName("licence.LicenseHandler ")))
         Alert.show("This SWF was compiled WITHOUT a Flash Builder Pro license")
    else
         Alert.show("This SWF was compiled WITH a Flash Builder Pro license")

    Hello, anybody still answering posts here or is everybody just working on MAX?!

  • How to deal with .csproj.user being created/modified by Visual Studio before the project is run?

    So, what is the problem?
    The problem is that Visual Studio considers .csproj.user a dependency of the project being run.
    Let us assume the following:
     - We have a freshly built solution containing a web application project `X` as the Start Up project. 
     - There are Silverlight applications served by the X web application.
     - There is no `X.csproj.user` file initially.
    Now consider the following flow of events:
     1. Open the solution in the Visual Studio
     2. Build.
     3. Run.
     4. A dialog is open to ask whether Silverlight debugging is to be enabled. Enable it.
     5. Stop the debugging session.
     6. Run again.
     7. Stop the debugging session.
     8. Run again.
    Assuming nothing is built at step 2 (because the solution is totally up to date), will there anything be built at steps 3 and 6?
    The answer is affirmative and here is why:
     - The X.csproj.user file is actually created by Visual Studio when the project is requested to run. What happens next is that the
    X.csproj.user file is considered a dependency of the project
    X by the Visual Studio. Being created just now the file is newer than the project binaries and so Visual Studio builds the project
    X. This explains why the project is built at step 3.
     - When we agree to enable Silverlight debugging Visual Studio records this agreement in the
    X.csproj.user file. So the file is modified again, after the project has started running. Restarting the debugging session is going to build the project
    X yet again, after all X.csproj.user is again newer than the binaries built a second ago. This explains why the project is built at step 6.
    Fortunately, nothing is built at step 8.
    Call me petty, but I want to avoid the builds at steps 3 and 6. The problem is that I am not allowed to check in the X.csproj.user file, because that is likely to create a mess with people accidentally checking in their private changes.
    On the other hand, I am unable to move its default content (along with the agreement to enable Silverlight debugging) into the project file
    X.csproj. Well, I can, but it is just being ignored.
    So, here is my question - is it possible to separate the content stored in a
    .csproj.user into two groups:
     - Permanent. These are the things I would love to have in the .csproj file. It will be checked in.
     - Temporary/Private. These are the things private to individual developers. Never checked in.
    Visual Studio already allows this separation for certain properties - see the
    Apply server settings to all users (store in project file) checkbox in the Web properties tab of a Web application project - http://olalalittlen.wordpress.com/2011/07/20/vs-tips-managing-server-settings-in-web-projects-for-multi-developer-scenarios/.
    However, it is insufficient.
    Any other ideas on how to prevent the aforementioned redundant builds are welcome too.

    Hi Mark,
    I think your issue is more about project itself. the saved information in the .csproj.user settings is about the project's information.
    So I suggest you post your issue to the related project forum.
    web forms:http://forums.asp.net/18.aspx/1?Web+Forms
    mvc:http://forums.asp.net/1146.aspx/1?MVC
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Windows task bar locks when .vi is running

    The Windows task bar locks when the .vi is running.
    How do I enable the windows task bar so I can multi-task when my .vi is running? Is this new with LabVIEW7?

    Thanks Allen, I thought you may have had the answer as I do have a clock function running all the time, but I have a delay in that loop. I figured out what is going wrong. If I maximize the .vi, then the task bar will not function when the .vi is running. So, I did not maximize the .vi, and chose 'Size the front panel to the width and height of the entire screen' on the Window Size category under vi properties, and the task bar now works when the .vi is running. I feel that I should be able to have the front panel maximized, and still use the task bar. I do have 'Always on top' selected in my Start/Settings/Taskbar options. Thanks!

  • Not able to use Visual studio 2010 editor intelligence while running SDK sample code ?

    whenevr i start sdk sample project in visual studio i can build it ,debug it ,run it but the problem is that VS 2010 editor showing lots of red lines under many lines of code which on Mouse hover show some kind of error(mostly _____ is undefined) moreover i am not able to use intelligence feature of VS editor and i have to check reference of SDK everey time .what is the solution to this problem .

    1. Create environment variable INDESIGN_SDK_DIR with path to root folder of your SDK
    e.x  INDESIGN_SDK_DIR = "C:\SDK\InDesignCS6SDK"
    2. In your project add this to project settings:
    "VSProject"->"Proporties"->"Configuration Proporties"->"VC++ Directories"->"Executable Directories" add:
    $(INDESIGN_SDK_DIR)\devtools\bin
    "VSProject"->"Proporties"->"Configuration Proporties"->"C++"->"General"->"Additional Include Directories" add:
    $(INDESIGN_SDK_DIR)\source\precomp\msvc;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\xmedia;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\preflight;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\ui;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\tables;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\text;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\graphics;
    $(INDESIGN_SDK_DIR)\source\public\libs\widgetbin\includes;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\workgroup;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\interactive;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\interactive\ui;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\colormgmt;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\utils;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\incopy;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\layout;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\architecture;
    $(INDESIGN_SDK_DIR)\source\public\interfaces\cjk;
    $(INDESIGN_SDK_DIR)\source\precomp\common;
    $(INDESIGN_SDK_DIR)\source\public\includes;
    $(INDESIGN_SDK_DIR)\source\public\libs\publiclib\plugins;
    $(INDESIGN_SDK_DIR)\source\public\libs\publiclib\files;
    $(INDESIGN_SDK_DIR)\source\public\libs\publiclib\objectmodel;
    $(INDESIGN_SDK_DIR)\external\asl\boost_libraries;
    $(INDESIGN_SDK_DIR)\source\sdksamples\common;
    $(INDESIGN_SDK_DIR)\external\afl\includes
    "VSProject"->"Proporties"->"Configuration Proporties"->"Linker"->"General"->"Additional Library Directories" add:
    $(INDESIGN_SDK_DIR)\build\win\objr;
    $(INDESIGN_SDK_DIR)\external\afl\libs\win\release;
    $(INDESIGN_SDK_DIR)\external\icu\libs\win\release
    "VSProject"->"Proporties"->"Configuration Proporties"->"Linker"->"Input"->"Additional Dependencies" add:
    PMRuntime.lib;
    Public.lib;
    WidgetBin.lib;
    AFL.lib;

  • SQLDEV 2.1.0.63 gives ORA-904 on UT_TEST_RESULTS when running unit test

    Hi, I am trying to create and run my first unit test using sqldeveloper 2.1.0.63 but it fails with followkng error:
    ----- Error Stack Dump -----
    ORA-00904: "TEST_USER_NAME": invalid identifier
    ----- Current SQL Statement for this session (sql_id=b9c4zd8fqmykv) -----
    select utr_id, name, status, message, run_date,coverage,test_user_name from ut_test_results where ut_id = :ID order by run_date desc
    table ut_test_results indeed does not have this column test_user_name:
    SYS@madlnlcs11/map SQL> DESC UT_SP5.UT_TEST_RESULTS
    Name Null? Type
    UTR_ID NOT NULL VARCHAR2(40)
    UT_ID NOT NULL VARCHAR2(40)
    NAME NOT NULL VARCHAR2(120)
    STATUS NOT NULL VARCHAR2(20)
    MESSAGE VARCHAR2(2000)
    COVERAGE NOT NULL NUMBER(1)
    RUN_DATE NOT NULL TIMESTAMP(6)
    CREATED_ON NOT NULL TIMESTAMP(6)
    CREATED_BY NOT NULL VARCHAR2(120)
    UPDATED_ON NOT NULL TIMESTAMP(6)
    UPDATED_BY NOT NULL VARCHAR2(120)
    how come there's this mismatch? The Unitest repository was created by the same sqldeveloper !
    regards,
    Andre

    This seems to be coming from the repository being marked as Shared repository. Appearantly sqldeveloper is issueing a different query, referencing TEST_USER_NAME, in that case. After I did a DESELECT AS SHARED REPOSITORY and drop/recreate of the repository the error ORA-904 no longer occurs.

  • Got an eror while running unit tests on jsf.

    Hi
    i checked the latest verison from cvs and also downloaded the latest build of glassfish for linux.
    While trying to run the unt tests, i got the followig error when i ran "test.appserver" under jsf-ri.
    i made sure that the server was runing at the time when i ran the test and have the correct versions of cactus,junit and html-unit.But the test resulted in the folowing error:
    run.cactus.test.appserver:
    deploy:
    [copy] Copying 1 file to /home/kc161609/glassfish/domains/domain1/autodeploy
    run.cactus.test:
    [junit] Running com.sun.faces.application.TestActionListenerImpl
    [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 9.755 sec
    [junit] Testsuite: com.sun.faces.application.TestActionListenerImpl
    [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 9.755 sec
    [junit] Testcase: testProcessAction took 5.845 sec
    [junit] Caused an ERROR
    [junit] (java.lang.reflect.ReflectPermission suppressAccessChecks)
    [junit] at com.sun.faces.cactus.TestingUtil.invokePrivateMethod(TestingUtil.java:48)
    [junit] at com.sun.faces.cactus.StoreServletContext.setServletContext(StoreServletContext.java:58)
    [junit] at com.sun.faces.cactus.FacesTestCaseService.setUp(FacesTestCaseService.java:147)
    [junit] at com.sun.faces.cactus.ServletFacesTestCase.setUp(ServletFacesTestCase.java:160)
    [junit] at org.apache.cactus.internal.AbstractCactusTestCase.runBareServer(AbstractCactusTestCase.java:153)
    [junit] at org.apache.cactus.internal.server.AbstractWebTestCaller.doTest(AbstractWebTestCaller.java:119)
    [junit] at org.apache.cactus.internal.server.AbstractWebTestController.handleRequest_aroundBody0(AbstractWebTestController.java:93)
    [junit] at org.apache.cactus.internal.server.AbstractWebTestController.handleRequest_aroundBody1$advice(AbstractWebTestController.java:224)
    [junit] at org.apache.cactus.internal.server.AbstractWebTestController.handleRequest(AbstractWebTestController.java)
    [junit] at org.apache.cactus.server.ServletTestRedirector.doPost_aroundBody2(ServletTestRedirector.java:101)
    [junit] at org.apache.cactus.server.ServletTestRedirector.doPost_aroundBody3$advice(ServletTestRedirector.java:224)
    [junit] at org.apache.cactus.server.ServletTestRedirector.doPost(ServletTestRedirector.java)
    [junit] at org.apache.cactus.server.ServletTestRedirector.doGet_aroundBody0(ServletTestRedirector.java:72)
    [junit] at org.apache.cactus.server.ServletTestRedirector.doGet_aroundBody1$advice(ServletTestRedirector.java:224)
    [junit] at org.apache.cactus.server.ServletTestRedirector.doGet(ServletTestRedirector.java)
    [junit] at javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
    [junit] at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
    [junit] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [junit] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [junit] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [junit] at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:256)
    [junit] at java.security.AccessController.doPrivileged(Native Method)
    [junit] at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    [junit] at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:289)
    [junit] at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:172)
    [junit] at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:384)
    [junit] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:273)
    [junit] at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:560)
    [junit] at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:530)
    [junit] at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:234)
    [junit] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    [junit] at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:560)
    [junit] at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:71)
    [junit] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
    [junit] at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:560)
    [junit] at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:118)
    [junit] at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
    [junit] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:131)
    [junit] at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:560)
    [junit] at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:530)
    [junit] at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
    [junit] at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:214)
    [junit] at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:569)
    [junit] at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:350)
    [junit] at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:243)
    [junit] at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:248)
    [junit] at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:73)
    [junit] Caused by: java.security.AccessControlException: access denied (java.lang.reflect.ReflectPermission suppressAccessChecks)
    [junit] at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
    [junit] at java.security.AccessController.checkPermission(AccessController.java:427)
    [junit] at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
    [junit] at java.lang.reflect.AccessibleObject.setAccessible(AccessibleObject.java:107)
    [junit] at com.sun.faces.cactus.TestingUtil.invokePrivateMethod(TestingUtil.java:45)
    [junit] ... 48 more
    BUILD FAILED
    /home/kc161609/javaserverfaces-sources/jsf-ri/build.xml:820: The following error occurred while executing this line:
    /home/kc161609/javaserverfaces-sources/jsf-ri/build-tests.xml:452: The following error occurred while executing this line:
    /home/kc161609/javaserverfaces-sources/jsf-ri/build-tests.xml:338: Test com.sun.faces.application.TestActionListenerImpl failed
    Total time: 2 minutes 27 seconds
    There is some "access denied exception"
    (java.security.AccessControlException: access denied (java.lang.reflect.ReflectPermission suppressAccessChecks)
    [junit] java.lang.RuntimeException: java.security.AccessControlException: access denied")
    I think there is no problem with the build or the machine .I'm not sure what that problem is well,so please help me out with this error.
    Thanks
    Srinivas

    Hi,
    You got these errors because runInstaller can not start the GUI. There are 2 solutions, you can choose one:
    1. logout Gnome/Kde, login as oracle user, and run runInstaller again.
    2.open a new root terminal,
    a) run "xhost +" as root.
    b) run "su - oracle" switch to oracle
    c) run "export DISPLAY=:0.0"
    d) then run "./runInstaller" again.
    cheers.
    Ice

  • Trouble Running Unit Tests on Device

    I am having trouble running multiple unit test on my device. I am using JMUnit as part of NetBeans IDE 5.5.1. I can get the tests running in the emulator but when I try them on the phone they don't work. Under my project's properties->Application Descriptor->MIDlets->MIDlets in the Suite, the 'jmunit.framework.cldc11.TestSuite' comes up in red with the error 'Some MIDlet classes are invalid'. I am using CDLC 1.1 and MIDP 2.0. Any ideas?

    wegunterjrASI, 
    I have a few follow up questions for you to gain a better understanding of your application: 
    1). What are you using to do the unit test (NI’s unit test framework or VI tester from JKI)?
    2). What are you conducting the unit test on (RT Driver or something on the host machine)? 
    3). Are the unit test VIs under the target in the LabVIEW project? 
    4). Are you able to run a simple unit test? 
    Screenshots are always appreciated. 
    Regards, 
     

  • Run unit test in comand line

    Hello everybody,
    I try to run existing unit test in comand line:
    ututil -run -test -name ROW_COUNT -repo unit_test_repos -db finch
    where
    ROW_COUNT - simple unit test
    unit_test_repos - unit test repository, which i create using tutorial (http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/sqldev/r30/sqldev_unit_test/sqldev_unit_test_otn.htm)
    finch - owner of procedure, which i try to test
    after execution this command i receive this message:
    C:\sqldeveloper\sqldeveloper\bin>ututil -run -test -name ROW_COUNT -repo unit_test_repos -db finch
    SEVERE Error: No Repository was found on the selected connection, you need to create a repository. - oracle.dbtools.unit_test.UtRepositoryManager.openConnectionWithChecks(UtRepositoryManager.java:214)
    Unable to open repositoryafter that i try to execute command with another parametres (instead of finch i use sys-user), but receive equal result.
    what`s wrong?
    in Help document i find next:
    The following example runs a unit test named AWARD_BONUS in a Windows environment where SQL Developer is installed under Program Files. (Note that test and suite names are case sensitive for the command-line interface.) This example uses the repository connection for user unit_test_repos and runs the test as user fred.
    cd c:\Program Files\sqldeveloper\sqldeveloper\bin
    ututil -run -test -name AWARD_BONUS -repo unit_test_repos -db fred"
    fred is connection which exist in oracle sql developer interface? what kind of privilegies should fred has?
    In oracle sql deevloper exist several connection to another servers. i`t can be reason of error?
    I trying in oracle sql developer interface select finch as manager of unit tests (tools - unit_test - manage_users to the next i select in dropdown list "finch" and granted needed privilegies for him) , but result was`t changed.
    thanks.

    It looks like you need to spark up SQL Developer, create a repository connection and assign that in the Unit Test Menu. It will walk you through creating the repository and then you can refer to that from the command line.

  • Running unit tests on inline hardware custom device

    How to do unit tests for Inline Hardware Custom Devices?
    I get this error after creating a unit test.
    Possible reason(s):
    Cannot connect to the target. Please ensure that the VI Server setting is enabled and deployed to the target. Also, make sure that the port number is correct and that this machine is allowed to connect through VI Server.

    wegunterjrASI, 
    I have a few follow up questions for you to gain a better understanding of your application: 
    1). What are you using to do the unit test (NI’s unit test framework or VI tester from JKI)?
    2). What are you conducting the unit test on (RT Driver or something on the host machine)? 
    3). Are the unit test VIs under the target in the LabVIEW project? 
    4). Are you able to run a simple unit test? 
    Screenshots are always appreciated. 
    Regards, 
     

  • When building an application unit tests are added to a support directory

    Why are unit tests (.lvtest files) added to a support directory when building an application? I cannot find a way to exclude them from the support directory.

    I'd imagine this is happening to you because they are in the "Dependencies" section of your project file (*.lvproj). Is this correct?
    If so, you should add them to your project file somewhere. Then you will be able to prevent them from being installed. In my experience LabVIEW grabs files it thinks are nesecary from the Dependencies list and installs them in a support directory. 

  • When tryed to run diagnostic test  windows blacked out then blue screen ipad will not turn on now

    when I ran a diaganostic test windows blacked out and then the "blue screen of death"........and now my ipad will not turn on ......has anyone had this problem ?...if so...what now

    Have you tried a reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds, after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Maybe you are looking for