Site update for unit test infrastructure Momentics

I asked this question in the forum WebWorks and got no response... I was hoping this would be a trivial:

I want unit test my native extension WebWorks. I came across this video and presentation PDF of BlackBerry https://bblive.blackberryconferences.net/2013/connect/sessionDetail.ww?SESSION_ID=2735 . This suggests that you have developed an extension for this purpose. On slide n ° 7, it says 'add site update... '. "where the plugin can be sought.

Unfortunately, the URL of the update site is not mentioned in the PDF or a video presentation and I can't seem to find anywhere on the net... One of the admins know what this could be?

Maybe this one: https://github.com/blackberry/MomenticsUnitTestingPlugin ?

Tags: BlackBerry Developers

Similar Questions

  • How calculated the code coverage in unit test infrastructure

    I'm looking for documentation on how the unit test framework calculates code coverage.

    I just recently installed the unit test framework and I had mixed results with the code coverage feature.  I manually calculated all the branch points in my vi, but the framework calculates more that I can think of, which gives a value of code coverage less than stellar (51%).  Is there documentation for how it is calculated?  I'm either missing something fundamental, or there is a bug with the framework.

    My vi consists of a loop (with shift registers) uninitialized which runs once.  On the inside of the loop is a business T/F structure that leads to a listed case structure possible two cases (one of which is the default value)... pretty basic.  Inside one of the structures is a loop and the other is cross.  For some reason, the unit test framework calculates 7 "flags chart run.  I use the method of "external" test harness to call all my test cases for the vi under test, b/c frankly it was easier to use than the UI provided.  I don't know if this is the cause, b/c I saw the other oddities when using it, which I'll save for another thread of discussion.

    Code coverage is calculated by dividing the number of diagrams, code that was executed by the number of diagrams in your VI altogether. Each VI has at least 1 schema (schema-block real). Loops have a single diagram each, case structures and sequences have a single diagram by image and so forth (=> from your description, your VI has at least 7 diagrams). You can double-click the patterns that were not executed in the Unit Test Framework results dialog box to be displayed.

    This approach does not reflect the amount or complexity of the code that contains each diagram. We looked at various ways of counting nodes, terminals, controls, son and other, that would give you a number that reflects your code with more precision. Unfortunately, neither of these approaches gives values that can easily be understood without some knowledge about the inner workings of LabVIEW. We chose to go with a solution that is completely transparent to end users.

    Thank you

    Herbert

  • Copies on-line site BC > temp site BC for editing/testing of Dreamweaver?

    Can I copy a direct Business Catalyst site to a temporary site of BC for editing in Dreamweaver?

    Hi Steve,.

    You can take a look here:

    https://helpx.Adobe.com/Dreamweaver/using/Dreamweaver-business-catalyst.html

    and

    http://helpx.Adobe.com/Dreamweaver/KB/migrate-business-catalyst-Dreamweaver.html

    Hans-Günter

  • Automation of unit tests for the development of the ATG

    Hello
    I'm trying to set up unit tests automated to ATG. Is there anyone who has had success with this? I searched the whole forum and there is no indication in this sense. Is there anyone doing TDD for ATG?

    I've tried the ATG dust, but it is not useful and has many gaps. Anyone succeeded with other frameworks such as Mockito, needle, EasyMock etc. ? Any help is appreciated.

    It will be interesting to know what the ATG developers use for unit tests.

    Thank you.

    You can try Mockito.

    Setup
    1 initialize the component to be tested (Formhandler/repository/droplet etc.) and possible data (form entries etc.).
    2 mock, the calls of the method required when using method in mockito.

    Test
    1. write all possible test methods.
    2 when use, check the methods in Mockito for testing your methods.
    3. you can also use assertions to test the results (Ex: form errors)

  • Can't find updates for my Satellite 3005 - s303

    Hello.
    I can't find a site update for Toshiba satellite 3005-s303
    It is absent from the list. My model of another which is in the list may what is similar, or there is another variant to update all drivers and BIOS for my Toshiba model.
    Thank you

    Hello

    I don't know what site you were watching. Your machine is the United States, here is a link to the download page for your machine.

    http://www.CSD.Toshiba.com/cgi-bin/TAIS/Su/su_sc_modItemList.jsp?MOID=1073833653&CT=DL&BV_Ses sionID=@@@1673061772.1127125127@@@&BV_EngineID=c ccfaddfjlffgggcgfkceghdgngdgnj.0

    Nick

  • How can I unit test screws with classes?

    I have my first VI using an oriented object approach I want to unit test. How in the world I have configure Unit Test infrastructure to accept a specific class? See the attached excerpt.

    Hi elrathia,.

    Here is a link that should help you:

    http://zone.NI.com/reference/en-XX/help/372584D-01/lvutfconcepts/utfc_tests_cases/

    Below, you can see an example location:

    labview\examples\Unit Test Framework\LabVIEW Class\LV Class.lvproj

    (Note this is for 2012)

    DylanC

  • unit test framework

    Is it possible to group together the Unit Test framework in an EXE?  I would like to pass a path of the project file and path of the report file to an exe file that will reside on a dedicated test server and run tests or user-defined Unit Tests that are included in the project file.

    I want to use this EXE to run automated tests that can be triggered by a CI server like cruise control.

    Is there a limitation with a Toolbox or UTF specifically, which prevents the package in an EXE?

    You cannot run as a stand-alone executable Unit Test infrastructure. He uses a lot of functionality which is part of the LabVIEW development system, but not the LabVIEW runtime engine (for example in order to process the block diagrams, project files).

    What you can do in order to solve your use case is to install LabVIEW on your test machine and run a VI that runs your tests. There are several ways of commissioning and control of LabVIEW, including a command line interface that allows you to pass in a name of VI to run more parameters for the VI. A more accurate way to control LabVIEW would be through ActiveX, which is possible for example in a VB Script or JavaScript that are executed by the Windows Scripting Host.

    This piece of VBScript for example takes 2 inputs command line, start of LabVIEW, charge a VI, passes the values to the VI and run the VI. He will wait for LabVIEW is finished (as an option). You can also choose to keep LabVIEW run all the time, or to have the script open and close as needed.

    Dim oLV
    Set oLV = CreateObject("LabVIEW.Application")
    
    sCurPath = CreateObject("Scripting.FileSystemObject").GetAbsolutePathName(".")
    
    Dim oVI
    Set oVI = oLV.GetVIReference(sCurPath&"\LVDiff.llb\Diff_VI.vi")
    
    oVI.SetControlValue "Input 1", WScript.Arguments(0)
    oVI.SetControlValue "Input 2", WScript.Arguments(1)
    
    On Error Resume Next
    oVI.Run(0)
    If Err.Number>0 Then
        oVI.Abort
        MsgBox "Error"
    End If
    

    Hope that helps,

    Herbert

  • Organization code of unit tests

    How people organize the code for unit tests with regard to the application code?  First I tried to have a separate project for testing, but even with saw this project depend on the application project, the test code could not find application classes to test.  Based on an article I read, it seems that it is because the classes are in a swf file and not a CFC.

    I then put the test in the same project as the application that seems to work.  But I get this warning that I don't know how to get rid of:

    Slam is a module or application that is referenced directly. This will Slam and all of its dependencies associated with tests: FlexUnitApplication. With the help of an interface is the preferred method to avoid this problem.
    Where the Slam is the application I'm testing.  I don't want an interface; tests should test the actual code.  I have the direct reference.  At least I understand what the warning is trying to tell me.
    Someone knows how to make warning go away?

    It's as if the files in a folder that are not watched. That makes no sense.

    It is a very precise when statement you * link * a folder or file in Eclipse (for example. FlashBuilder).  In Eclipse, you can as you already know, link records in his workspace.  A good reason for this, is to give the developer the ability to open the files related to Eclipse.  And if all goes well then Eclipse was an editor for this file type.  For example, at work, all my Flex projects are in my Eclipse workspace (this is).  But, assets and dependencies of my project files (.xml, .fla, .swf, .swc, .f4v, Flash asset files, .as, etc) are in any other directory on my file system.  By linking these files, I am able to open through Eclipse, usually it's just .xml files.  If you are debugging your Flex application and load an external .swf file, with its src folder, you can also Set up break points for the debugger.

    But what connection does not import the code in your application Flex (test) when it is compiled.  What you need to do to import code in the Flex application for compilation is next (I'm Recalling the following steps of memory, so I hope that its okay):

    • in Eclipse, select your project in the Panel "Project Navigator" (usually the Panel on the left)
    • Right-click on the project to bring up a context menu
    • in this context menu, select the 'Properties' item to bring up a pop-up window
    • in this pop-up window, select "Flex Build Path"
    • the right side of the pop-up window will be updated, select the "Source Path" tab

    This is where you can add your applications code src of your test project.  And also, the other "Library Path" tab, you can add a .swc everywhere your computer file can access the .swc files.  So, by adding the CBC to your application code to the test in this way project, you can compile these files referenced in the tester.

  • View of unit test does not appear

    Hello, I have followed this tutorial on configuring SQL * Developer for unit tests: http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/DB/sqldev/R30/sqldev_unit_test/sqldev_unit_test_otn.htm#T4 the fist step under "create a Unit Test" says ' select view > Unit Test ' However the view of unit test never appears. Is there something else I should do to get this point across to appear? I'm on Windows 7 x 64 using Sql * developer 4.0.2.15 build 15.21 x 64. Thank you,-joel

    Looks like you have to get rid of that other install and stick with a new...

  • Since the update for Firefox 4, I am no longer offers the possibility to save the tabs when closing making it much faster to access these sites when starting the next day. Why this possibility has been removed? It's a favorite feature.

    Since the update for Firefox 4, I offer more the ability to save tabs on shutdown - makes more rapid access to these sites when commissioning the next day. Why this possibility has been removed? It was a feature favorite and saved a lot of time.

    Firefox 4 records the previous session.

    You can use "Firefox > history > restore previous Session" for the previous session.

    There is also a button 'Restore previous Session' on the default on: Home home page.

    Another possibility is to use:

    • Tools > Options > general > startup: "When Firefox starts": "show my windows and tabs from last time '.

    You can set the preferences of warning on the topic: config page true via the context menu or toggle the value with a double click of the left.

    To open the topic: config page, type Subject: config in the address bar (address) and press the 'Enter' key, as you type the url of a Web site to open a Web site.

    If you see a warning then you can confirm that you want to access this page.

  • Is there any unit test framework tools for DAQmx programmers who use C interface?

    I need to accuratly simulate DAQmx devices for the software in the development of unit tests. Are there tools available to make this easier?

    You have the integrated simulation of DAQ devices in MAX. The simulation is limited. It is explained in the NOR-DAQmx help (NI - DAQmx Key Concepts > NOR-DAQmx simulated devices).

  • LabVIEW Unit Test Framework: workaround for forbidden control characters label?

    Hello

    I am using Unit Test Framework of LabVIEW and he tells me that I am not allowed to use the unit as [Celsius] card in my labels of control:

    «Control's label may not contain the following items: \n, \r, tabs, table holders, name and decimal separators delimiters.»

    In the VI under test contain [] or /. »

    Rename these labels is a difficult option for me because the format of the units in brackets is on our company agreements.

    Can anyone think of a work around so that the test framework ignores these labels?

    Thank you

    Peter

    There was an exchange of views on these "Naming Conventions" a general consensus was arrived at, it became obvious that the best methods for the controls and indicators is to use short "Lables" and put to amplify the info in the caption showing the legend on the FP and not the Lable.

    for example

    "Temp".

    "Temperature [Celsius].

    This saves a lot of space BD when buldling / unbundling or using VI Server refs, always give the user all the information they need, and help displays the legend if there is one.  It even allows to change the default value (0) without messing up any type defs.

    In your case the Framwork UT would be happier if you have taken this approach.

  • The error code is 'Windows Update error 80072ee2'. SO how to fix in a step-by-step fashion. I added the site proposed for the update in my antivirus while list.

    The error code is 'Windows Update error 80072ee2'. SO how to fix in a step-by-step fashion. I added the site proposed for the update in my antivirus while list.

    Hi Sarma_RN,

    1. When you receive the error message?

    2. update you are trying to install?

    3. When was the last time you were able to install updates?

    If Windows Update, error 80072ee2 during updates, the Windows Update servers may experience an unusually high number of requests for updates. Close Windows Update, wait 10 to 15 minutes, and then run Windows Update again. Alternatively, you can wait for automatic update of Windows run at its next scheduled time.

    These errors can occur caused by one of the following problems:

    • Applications or processes that interfere with Internet communications
    • Problems on your computer
    • Strong Internet activity
    • Recoverable database errors

    See the Microsoft article and try the steps mentioned below.

    You may encounter temporary connection related errors when you use Windows Update or Microsoft Update to install updates

    http://support.Microsoft.com/kb/836941

    I hope this helps!

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I have Dreamweaver CS6 but want to update for cc, how ever I did mine and I sign in and upward at the site web adobe and want to use css Designer because with my courses, I do and they use CC. How can I get upgrade with refund f

    I have Dreamweaver CS6 but want to update for cc, how ever I did mine and I sign in and upward at the site web adobe and want to use css Designer because with my courses, I do and they use CC. How can I get the upgrade with this new refund. Thank you

    There is no way to update the version of perpetual license / DWCS6 drive to the creative cloud, they are two completely separate programs. There used to be a discount for the Creative Suite owners switch to CC, but that ship has sailed.

    If you want to the CSS designer, you will need a subscription here: pricing and membership creative cloud plans | Adobe Creative Cloud

  • I am but the Australia trip to the United Kingdom at the moment. I am trying to join the present case to pay $29 a month for creative cloud .99AUD, however I keep getting diverted to the site of the United Kingdom where they want me to pay £26,68 per mont

    I am Australian but travel to the United Kingdom at the moment. I am trying to join the present case to pay $29 a month for creative cloud .99AUD, however I keep is diverted to the site of the United Kingdom where they want me to pay £26,68 per month for the same offer. I won't be in Australia in time to get the special offer. I tried to change the region, but also in making sure that my ID apple is always set to the Australia. How can I take advantage of this adobe Australia treat and pay in AUD by using my Australian credit card?

    Hello

    Please try it on another browser.

    Otherwise, you can contact Adobe sales to place the order.

    Contact us | Adobe

    Kind regards

    Sheena

Maybe you are looking for

  • How to shorten the details displayed by email to the Notification Center iOS 10?

    In iOS 10, each email appears in the Notification Center with a large amount of detail/lines.  Is there a way to configure notifications to display only the subject and sender of new emails, or otherwise reduce the level of detail?  I would rather se

  • Drag and drop photos to photo streams in folders

    I want to drag and drop photos from my photo stream on my book of mac pro to my photo folders. I am a new user of apple.

  • Windows Media Player, skins problem

    I'm having a problem with my WMP skins more than just the 'corporate' skin, but for some reason, when I try to select it and open a different skin, I it opens the skin 'corporate '. I downloaded some and I have some that were already there, but it's

  • Upgrade graphics card suggestions

    Hi all - looking for a few tips: HP Slimline s5-1015 t, Win 7 Desktop, 8 RAM, 2.6 GHz - graphics performance is the slowest and I would check with a better card NEW - trying to find my post a couple of weeks, and maybe this isn't the way to do a foll

  • Import of music in WMP = duplicate files?

    If I import my music folder (I usually use itunes) in Windows Media Player, WMP would make duplicate files or a separate folder for my music? Thanks much in advance =).