Mocking framework for ABAP unit tests

Hi, Is there a mocking framework for ABAP ? Something like easymock or mockito for Java ?
I searched but cannot find anything...
thanks !

Hello,
Now there is one framework available ;-)
https://github.com/uweku/mockA
Regards,
Uwe

Similar Messages

  • Hi Experts, need an example for abap unit test(ABAP OO)?

    Hi Experts,
    I want to do abap unit test for the developed programs, could anyone please give me an example program of development(a simple is ok, just use it to test)? and an abap unit test example for the program, what I want is to use object oriented abap, thanks in advance!
    Merry Christmas to you all.
    Kind regards
    Dawson

    Hi
    Below documents will give you more information,
    http://help.sap.com/saphelp_nw04/helpdata/en/a2/8a1b602e858645b8aac1559b638ea4/content.htm
    ABAP Testing and Troubleshooting [original link is broken]
    http://bi.offis.de/publicProject/g16cglafhqva.htm
    regards
    Nagaraju

  • Creating ABAP Unit Tests for Report Programs

    How can we create ABAP unit test  for report programs.
    Please explain the steps?

    Hi Devendra.
    I would like to suggest some references which are as below:
    [SAP HELP - Complete ABAP unit|http://help.sap.com/saphelp_nw04/helpdata/en/a2/8a1b602e858645b8aac1559b638ea4/frameset.htm]
    [SDN - Reference for ABAP unit testing|about unit testing;
    Hope that's usefull.
    Good Luck & Regards.
    Harsh Dave
    Edited by: Harsh Dave on Jul 14, 2008 2:13 PM
    Edited by: Harsh Dave on Jul 14, 2008 2:20 PM

  • ABAP unit: test classes part of prod. code

    Hi all,
    I've read <a href="https://weblogs.sdn.sap.com/pub/u/266">Thomas Weiss</a>'s weblog: <a href="/people/thomas.weiss/blog/2004/12/17/a-spotlight-on-abap-unit-part-1 Spotlight on ABAP Unit Part 1</a>.
    I posted a question there, but apparently Thomas can't answer at the moment, and since I'm impatient for getting someone's opinion, I reckon we can discuss that topic here  :^)
    As explained in the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c1be1003-0701-0010-3795-f87160de6483">NetWeaver Developer’s Guide Using ABAP</a>, the test classes are part of the program under test (PUT):
    <i>In ABAP Unit, test classes are part of the production code of the TU. This avoids problems arising from the test code being separate from the production code:
    - Programs and tests must be kept synchronized.
    - You have to ensure that the test and program code are transported together.
    - External test code only enables black box tests with an outside perspective of the tested program.
    Since the test code is part of the production code, it is easy to keep the unit tests and the
    production code up to date if the latter is changed.
    Although the test code and the production code are transported through the system landscape, ABAP unit tests do not increase the load on the production system. By default, the test code is not compiled in the production system. Therefore, the test code can never be executed in the production system.</i>
    On the other hand, this idea is quite different from what suggested by other unit testing frameworks.
    For instance, the documentation of <a href="http://www.ruby-doc.org/stdlib/libdoc/test/unit/rdoc/classes/Test/Unit.html">Test::Unit - Ruby Unit Testing Framework</a> reads:
    <i>It‘s handy to collect a bunch of related tests, each test represented by a method, into a common test class that knows how to run them.
    The tests will be in a separate class from the code they‘re testing for a couple of reasons. First of all, it allows your code to stay uncluttered with test code, making it easier to maintain. Second, it allows the tests to be stripped out for deployment, since they‘re really there for you, the developer, and your users don‘t need them. Third, and most importantly, it allows you to set up a common test fixture for your tests to run against.</i>
    Regarding the advantages outlined by NetWeaver Developer’s Guide:
    - Programs and tests might be kept synchronized even if they don't belong to the same unit of code.
    - Moreover, you could assure that the test and program code are transported together by saving them in the same package.
    - And quite frankly, I don't have a thourough understanding of the reason why external tests only allow <i>black box tests with an outside perspective</i>.
    What are your opinions on this?
    Regards, Davide

    Hi,
    when I started unit testing with JUnit I was quite surprised that SAP groups the tests with the production code. But now I actually really like it. It has a few advantages:
    - Good tests serve as an excellent documentation so why not bundling them together.
    - If you want to look at the tests they are easy to find.
    - I write all my class tests as local classes. I found out that it really helps me to focus on writing tests only for the class under test. Sometimes it is quite easy to forget the "unit" and write integration tests again.
    Regarding your question:
    >And quite frankly, I don't have a thourough understanding of the reason why external tests only allow black box tests with an outside perspective.
    Usually I would not use the term black box testing in this context. Maybe you mean that it is easy to access private attributes, methods when you group class and testclass together?
    Normally black box testing means that you cannot look at the implementation of the code under test. So your tests are based on the specifications or if there is not one, on your common sense.
    cheers
    Thomas

  • ABAP Unit Test Problem

    Here we go again on questions regarding ABAPUnit.  We are trying to use Abap unit within a Class object.  All the examples we have seen have to do with Classes and Methods within a Report program. 
    What we have created:
    Class: ZCL_MAIN
    Type: General Class
    Method:  test_abapunit
    Class: ZCL_MAIN_TEST
    Class type: Abap Unit
    Sub Class of ZCL_MAIN
    Method: Test_abapunit_test 
    We try and run the Abap Unit Test from the Test Class and it says it is complete but does not execute our code.  I know we are doing something wrong but are stumped as to what it is.
    Glenn

    Hi Glenn,
    although Uwe and Klaus actually provided for the relevant information we too faced some difficulties at first understanding 'where' you actually put the test classes. So here are the mechanics:
    Open SE80 or SE24 and implement your class ZCL_MAIN.
    While this class is opened, choose <i>Goto->Class-local types->Local Class Definitions/Types</i> from the menu. An editor for local classes is opened on the right.
    Type in your class definition ZCL_MAIN_TEST like this:
    CLASS lcl_main_test DEFINITION FOR TESTING.
      "#AU Risk_Level Harmless
      PRIVATE SECTION.
        CONSTANTS: some_initial_test_value TYPE i VALUE 5.
        DATA: main_class TYPE REF TO zcl_main.
        METHODS setup     FOR TESTING.
        METHODS teardown  FOR TESTING.
        METHODS check_get_my_int FOR TESTING.
        METHODS check_.. FOR TESTING.
    ENDCLASS.
    This is btw a 'normal' local class, no subclass of cl_abap_unit.. whatsoever.
    Go back (menu <i>Goto->Class Definition</i>).
    Choose <i>Goto->Class-local types->local class implementations</i> from the menu.
    Type in your class implementation for ZCL_MAIN_TEST, i.e. implement especially the setup()-method for the test fixture and the various test-methods.
    Compile/activate your class ZCL_MAIN.
    Run the test by choosing <i>Test->Unit Test</i> from the context menu of the class ZCL_MAIN.
    Hope this helps, regards,
    Sebastian

  • Transport of ABAP Unit Test Classes between systems.

    Hi guys
    I have a bit of a dilemma on hands here pertaining to the transport of ABAP Unit test classes. Generally when you create a transport containing classes the transport manager will automatically include all "programs" related to the class like the local type definitions, local implementations and with ABAP Unit the local test classes.
    <b>The question that I have is how would one go about excluding the ABAP Unit test classes in transports to production systems and pre-WAS 6.40 systems that do not support ABAP Unit? Does the transport system automatically manage this for you?</b> Any help ideas regarding this would be greatly appreciated.
    Kind regards
    Ettienne Hugo

    Hello Ettienne
    I have a very similar problem that I have to maintain objects for release 6.20 and 6.40. Since I appreciate ABAP Unit Tests as being very helpful I do not want to miss them even in such a situation.
    My approach is as following:
    - If possible, I try to separate the local classes from the tested object, for example:
    - Report or function group
         - contains an include like <z_include_ft01>
                - Within <i><z_include_ft01></i> I have a single stament <i><z_include_au01></i>
    The actual ABAP Unit Tests are coded in <z_include_au01>. Now if I need to ship the development to a release < 6.40 the only thing I need to do is to comment the single INCLUDE statement in <z_include_ft01>. This manual step cannot be ommitted (however, it would be simple task to define an eCATT doing this). In addition, include <z_include_au01> should not be in the transport request for the development (if it happened the import error would not affect the function of the development because it is no longer linked together).
    Advantage of this approach:
    - I clearly see that my development contains ABAP Unit Tests (use naming conventions for the includes) and
    - I can ship - with little effort - the development to SAP releases not supporting ABAP Unit Testing yet
    Regards
      Uwe

  • How to count the number of test ABAP Unit test methods

    I need to count the number of test methods of a class.   Has anybody done this before?   For example, if I have a class that has 3 methods and I wrote 6 abap unit test methods for it.   I can count the number of methods using cl_abap_classdescr=>describe_by_name (which gave me 3 from my example) but I could not find the function module to count the number of test methods (which should give me 6 in my example).
    I appreciate your reply.

    This call does thew trick.  I just had to make sure the prog name that I pass has "CP" from the 30th pos for it return the result.   Here is thew subroutine that I use:
    form get_test_method_count using     query_class
                               changing  test_method_count.
      data: l_progname type progname.
      l_progname = query_class.
      l_progname+30 = 'CP'.  "needed so the following method will recognize this as a class
      data: l_result type if_aunit_prog_info_types=>ty_t_testclasses.
      try.
          call method cl_aunit_prog_info=>get_tests_of_program
            exporting
              progname = l_progname
            receiving
              result   = l_result.
          if l_result is not initial.
            data: result_rec like line of l_result.
            loop at l_result into result_rec.
              test_method_count = lines( result_rec-methods ).
            endloop.
          endif.
        catch cx_root.
      endtry.
    endform.

  • Hi Experts, questions about abap unit test(abap oo)?

    Hi Experts,
    I am learning abap unit test, could you please tell me some info about how I can test the performance of some specific code in my program? can abap unit test do this kind of job? and could you please tell me what I can do using abap unit test? and some classic examples are appreciated, thanks in advance!
    Kind regards
    Dawson

    Hi
    Below documents will give you more information,
    http://help.sap.com/saphelp_nw04/helpdata/en/a2/8a1b602e858645b8aac1559b638ea4/content.htm
    ABAP Testing and Troubleshooting [original link is broken]
    http://bi.offis.de/publicProject/g16cglafhqva.htm
    regards
    Nagaraju

  • [svn:osmf:] 10816: Package renaming to org.osmf: framework and its unit tests.

    Revision: 10816
    Author:   [email protected]
    Date:     2009-10-02 09:19:54 -0700 (Fri, 02 Oct 2009)
    Log Message:
    Package renaming to org.osmf: framework and its unit tests.
    Modified Paths:
        osmf/trunk/apps/samples/framework/HTMLGatewaySample/HTMLGatewaySample.as
        osmf/trunk/apps/samples/framework/NestedRegionsSample/NestedRegionsSample.as
        osmf/trunk/apps/samples/libs/VASTSample/VASTSample.as
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioAudibleTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioPausableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioPlayableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioTemporalTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/SoundAdapter.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/SoundLoadedContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/SoundLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ChildSeekOperation.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeAudibleTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeBufferableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeLoadableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeMediaTraitBase.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeMediaTraitFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeMetadata.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositePausableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositePlayableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeSeekOperationInfo.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeSpatialTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeTemporalTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositeViewableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/CompositionMode.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/IReusable.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelSeekOperationInfo.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelSpatialTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelSwitchableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelViewableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialElementSegment.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialElementTransitionManager.a s
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialSeekOperationInfo.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialSpatialTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialSwitchableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialViewableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/TraitAggregator.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/TraitAggregatorEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/TraitLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/TraitLoaderEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/content/ContentElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/content/ContentLoadedContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/content/ContentLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaElementSprite.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaPlayerSprite.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/ScalableSprite.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/ScaleMode.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/BeaconEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/BufferTimeChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/BufferingChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/DimensionChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/DurationChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/FacetValueChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/FacetValueEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/GatewayChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/LoadableStateChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/LoaderEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MediaError.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MediaErrorCodes.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MediaErrorEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MediaEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MediaPlayerCapabilityChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MediaPlayerStateChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MetadataEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/MutedChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/NetConnectionFactoryEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/NetNegotiatorEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/PanChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/PausedChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/PlayheadChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/PlayingChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/PluginLoadEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/SeekingChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/SwitchingChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/TraitEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/TraitsChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/ViewChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/VolumeChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/gateways/HTMLGateway.as
        osmf/trunk/framework/MediaFramework/org/osmf/gateways/HTMLGatewayElementProxy.as
        osmf/trunk/framework/MediaFramework/org/osmf/gateways/RegionSprite.as
        osmf/trunk/framework/MediaFramework/org/osmf/html/HTMLElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/html/HTMLLoadableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/image/ImageElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/image/ImageLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/AbsoluteLayoutFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/AnchorLayoutFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/DefaultLayoutRenderer.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/ILayoutContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/ILayoutRenderer.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/ILayoutTarget.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/LayoutAttributesFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/LayoutContextSprite.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/LayoutRendererBase.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/LayoutRendererFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/LayoutUtils.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/MediaElementLayoutTarget.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/PaddingLayoutFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/RegistrationPoint.as
        osmf/trunk/framework/MediaFramework/org/osmf/layout/RelativeLayoutFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/loaders/ILoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/loaders/LoaderBase.as
        osmf/trunk/framework/MediaFramework/org/osmf/logging/ILogger.as
        osmf/trunk/framework/MediaFramework/org/osmf/logging/ILoggerFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/logging/Log.as
        osmf/trunk/framework/MediaFramework/org/osmf/logging/TraceLogger.as
        osmf/trunk/framework/MediaFramework/org/osmf/logging/TraceLoggerFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/DefaultMediaResourceHandlerResolver.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IContainerGateway.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaGateway.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaInfo.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaReferrer.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaResource.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaResourceHandler.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaResourceHandlerResolver.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IMediaTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/IURLResource.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/LoadableMediaElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaInfo.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaInfoType.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayerState.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/URLResource.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/IFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/IIdentifier.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/KeyValueFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/MediaType.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/Metadata.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/MetadataNamespaces.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/MetadataUtils.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/MetadataWatcher.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/MimeTypes.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/ObjectFacet.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/ObjectIdentifier.as
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/StringIdentifier.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetClient.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetConnectionAttempt.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetConnectionCodes.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetConnectionFactory.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetLoadedContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetNegotiator.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamAudibleTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamBufferableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamCodes.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamPausableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamPlayableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamTemporalTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DroppedFramesRule.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicNetStream.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicStreamingItem.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicStreamingNetLoad edContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicStreamingNetLoad er.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicStreamingResourc e.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/INetStreamMetrics.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/ISwitchingRule.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/InsufficientBandwidthRu le.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/InsufficientBufferRule. as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/MetricsProvider.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/NetStreamSwitchableTrai t.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/SufficientBandwidthRule .as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/SwitchingDetail.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/SwitchingDetailCodes.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/SwitchingRuleBase.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/DynamicPluginLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/IPluginInfo.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/PluginClassResource.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/PluginElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/PluginEntry.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/PluginLoadedContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/PluginLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/PluginLoadingState.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/PluginManager.as
        osmf/trunk/framework/MediaFramework/org/osmf/plugin/StaticPluginLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/ListenerProxyElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/ProxyElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/TemporalProxyElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/swf/SWFElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/swf/SWFLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/tracking/Beacon.as
        osmf/trunk/framework/MediaFramework/org/osmf/tracking/BeaconElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/tracking/BeaconPlayableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/AudibleTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/BufferableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/IAudible.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/IBufferable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/IDisposable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/ILoadable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/ILoadedContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/IPausable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/IPlayable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/ISeekable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/ISpatial.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/ISwitchable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/ITemporal.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/IViewable.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/LoadState.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/LoadableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/MediaTraitBase.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/MediaTraitType.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/PausableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/PlayableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SpatialTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SwitchableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/TemporalTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/ViewableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/FMSHost.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/FMSURL.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/HTTPLoadedContext.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/HTTPLoader.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/MediaFrameworkStrings.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/URL.as
        osmf/trunk/framework/MediaFramework/org/osmf/version/Version.as
        osmf/trunk/framework/MediaFramework/org/osmf/video/VideoElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/MediaFrameworkFlexTest.mxml
        osmf/trunk/framework/MediaFrameworkFlexTest/MediaFrameworkTest.mxml
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioAudibleTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioElementWithSoundLoade r.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioPausableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioPlayableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestAudioTemporalTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestSoundLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestCompositeAudibleTrai t.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestCompositeElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestCompositeMetadata.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestCompositeViewableTra it.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelSwitchableTr ait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelViewableTrai t.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialSwitchableTrai t.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialViewableTrait. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestTraitAggregator.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestTraitLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/content/TestContentElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/content/TestContentLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/display/TestMediaElementSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/display/TestMediaPlayerSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/display/TestScalableSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/events/TestMediaError.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/events/TestMediaErrorAsSubclass.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/gateways/TestHTMLGateway.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/gateways/TestRegionSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/image/TestImageElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/image/TestImageLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestAbsoluteLayoutFacet.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestAnchorLayoutFacet.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestDefaultLayoutRenderer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutAttributesFacet.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutContextSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutRendererBase.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutRendererFacet.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutUtils.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestMediaElementLayoutTarget. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestPaddingLayoutFacet.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestRegistrationPoint.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestRelativeLayoutFacet.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TesterLayoutTargetSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TesterSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/loaders/TestILoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/loaders/TestLoaderBase.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/logging/TestLog.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/logging/TestTraceLogger.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/logging/TestTraceLoggerFactory.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestIMediaFactory.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestIURLResource.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestLoadableMediaElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaElementAsSubclass.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaFactory.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaInfo.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestURLResource.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestKeyValueFacet.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestMediaType.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestMetadata.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestMetadataUtils.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/metadata/TestObjectIdentifier.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetClient.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetConnectionFactory.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetLoadedContext.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetNegotiator.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamAudibleTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamBufferableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamPausableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamPlayableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamTemporalTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/MockNetStreamMe trics.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestBandwidthRu le.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestBufferRule. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicNetS tream.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicStre amingItem.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicStre amingNetLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicStre amingResource.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestFrameDropRu le.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestNetStreamSw itchableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestSwitchUpRul e.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/InvalidImplementationPluginIn fo.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/InvalidVersionPluginInfo.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/SimpleVideoImagePluginInfo.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/SimpleVideoPluginInfo.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/TestDynamicPluginLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/TestPluginElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/TestPluginLoadedContext.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/TestPluginLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/TestPluginLoadingState.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/TestPluginManager.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/plugin/TestStaticPluginLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestProxyElementAsDynamicPro xy.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestTemporalProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/swf/TestSWFElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/swf/TestSWFLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/tracking/TestBeacon.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/tracking/TestBeaconElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestAudibleTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestBufferableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestIAudible.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestIBufferable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestILoadable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestIPausable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestIPlayable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISeekable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISpatial.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestISwitchable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestITemporal.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestIViewable.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestPausableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestPlayableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestSwitchableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestTemporalTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestViewableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/CustomMediaError.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicListenerProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicMediaElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicNetFactory.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicReferenceMediaElement.a s
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/InterfaceTestCase.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/MockHTTPLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/MockURLLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/NetFactory.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/NullResource.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/SampleResourceHandler.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/SimpleLoadedContext.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/SimpleLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/TestConstants.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/TestFMSURL.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/TestHTTPLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/TestURL.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/TimerTemporalTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/vast/VASTTestConstants.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/vast/loader/TestVASTLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/vast/media/TestDefaultVASTMediaFileR esolver.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/vast/media/TestVASTImpressionProxyEl ement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/vast/media/TestVASTMediaGenerator.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/vast/media/TestVASTTrackingProxyElem ent.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/vast/parser/TestVASTParser.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/version/TestVersion.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/video/TestVideoElement.as
        osmf/trunk/libs/VAST/.actionScriptProperties
        osmf/trunk/libs/VAST/.flexLibProperties
        osmf/trunk/libs/VAST/org/osmf/vast/loader/VASTDocumentProcessedEvent.as
        osmf/trunk/libs/VAST/org/osmf/vast/loader/VASTDocumentProcessor.as
        osmf/trunk/libs/VAST/org/osmf/vast/loader/VASTLoadedContext.as
        osmf/trunk/libs/VAST/org/osmf/vast/loader/VASTLoader.as
        osmf/trunk/libs/VAST/org/osmf/vast/media/DefaultVASTMediaFileResolver.as
        osmf/trunk/libs/VAST/org/osmf/vast/media/IVASTMediaFileResolver.as
        osmf/trunk/libs/VAST/org/osmf/vast/media/VASTImpressionProxyElement.as
        osmf/trunk/libs/VAST/org/osmf/vast/media/VASTMediaGenerator.as
        osmf/trunk/libs/VAST/org/osmf/vast/media/VASTTrackingProxyElement.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTAd.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTAdBase.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTAdPackageBase.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTCompanionAd.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTDocument.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTInlineAd.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTMediaFile.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTNonLinearAd.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTResourceType.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTTrackingEvent.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTTrackingEventType.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTUrl.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTVideo.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTVideoClick.as
        osmf/trunk/libs/VAST/org/osmf/vast/model/VASTWrapperAd.as
        osmf/trunk/libs/VAST/org/osmf/vast/parser/VASTParser.as
        osmf/trunk/libs/VASTTest/VASTTest.mxml
        osmf/trunk/libs/VASTTest/org/osmf/vast/VASTTestConstants.as
        osmf/trunk/libs/VASTTest/org/osmf/vast/VASTTests.as
        osmf/trunk/libs/VASTTest/org/osmf/vast/loader/TestVASTLoader.as
        osmf/trunk/libs/VASTTest/org/osmf/vast/media/TestDefaultVASTMediaFileResolver.as
        osmf/trunk/libs/VASTTest/org/osmf/vast/media/TestVASTImpressionProxyElement.as
        osmf/trunk/libs/VASTTest/org/osmf/vast/media/TestVASTMediaGenerator.as
        osmf/trunk/libs/VASTTest/org/osmf/vast/media/TestVASTTrackingProxyElement.as
        osmf/trunk/libs/VASTTest/org/osmf/vast/parser/TestVASTParser.as
        osmf/trunk/libs/adobe/NetMocker/.actionScriptProperties
        osmf/trunk/libs/adobe/NetMocker/.flexLibProperties
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/DefaultNetConnectionFactory.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/EventInfo.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/IMockNetLoader.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/IMockNetStream.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockDynamicNetStream.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockDynamicStreamingNetLoader.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetConnection.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetLoader.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetNegotiator.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/NetConnectionExpectation.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/NetStatusEventInterceptor.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/TracingNetLoader.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/TracingNetNegotiator.as
        osmf/trunk/libs/adobe/NetMockerTest/NetMockerTest.mxml
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/NetMockerTests.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetConnection.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetLoader.as
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/netmocker/TestMockNetStream.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/
        osmf/trunk/libs/VAST/org/osmf/
        osmf/trunk/libs/VASTTest/org/osmf/
        osmf/trunk/libs/adobe/NetMocker/org/osmf/
        osmf/trunk/libs/adobe/NetMockerTest/org/osmf/
    Removed Paths:
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/
        osmf/trunk/libs/VAST/org/openvideoplayer/
        osmf/trunk/libs/VASTTest/org/openvideoplayer/
        osmf/trunk/libs/adobe/NetMocker/org/openvideoplayer/
        osmf/trunk/libs/adobe/NetMockerTest/org/openvideoplayer/

    These are automated emails from the OSMF forums.  To unsubscribe, go here:
    http://forums.adobe.com/community/opensource/osmf/commits
    -- Brian

  • Mocking Oracle database in unit-tests

    In need to write unit tests that uses old node-oracle library and I am looking for options to run tests w/o real database.
    Is there in-memory fake database implementations (such as mockcouch for CouchDB or TingoDB for MongoDB)?
    Is there real world success stories to use Sinon.Js to mock database?
    Should I now rewrite modules to use with current supported library to make this 2 options available or better/simpler implemented?
    Should I not write unit-tests now and wait until options 1) and 2) available are?

    In need to write unit tests that uses old node-oracle library and I am looking for options to run tests w/o real database.
    Is there in-memory fake database implementations (such as mockcouch for CouchDB or TingoDB for MongoDB)?
    Is there real world success stories to use Sinon.Js to mock database?
    Should I now rewrite modules to use with current supported library to make this 2 options available or better/simpler implemented?
    Should I not write unit-tests now and wait until options 1) and 2) available are?

  • How to make a Abap Unit Test Suit with many test classes

    Hi,
    Problem space
    we have different packages(embedded) in our project and each package corresponds to a differnt functional layer in the design.
    We want to create abab unit test classes for these different layers.
    say embedded package 1 has 10 unit test classses
          embedded package 1 has 20 unit test classses
    How to grup these classes together so that we can start them frm a test suite.
    Code examples and blogs links will be appreciated.
    regards
    anubhav

    This sounds a bit like Project Administration 101 to me.
    I'm not exactly sure what you are actually trying to do here --but generally if you want to functionally test something you need to start with a business process -
    You need to create scripts which tell the user the data to be entered, the transaction to be used and the outcome.
    With SAP you might need to show screen shots of each stage as well.
    You follow this for each complete business process until you've covered the whole business cycle.
    You complete this say individually for Logistics, Purchasing and Finance and then compare what SAP gives you with what you expected to get.
    For some type of testing CATTS can help but without the business processes any testing is essentially meaningless.
    It is totally pointless trying to design a "generic" test plan until you've got the functional consultants to describe the business processes involved.
    Cheers
    jimbo

  • ABAP UNIT TEST

    Hi ,
    I am new to oops concept but i am able to understand.
    Now i have to create some Unit test plans in ABAP.We are using SAP Netwever 7.1 and WEB AS 6.0
    I tried from SE24 but i couldn't get the correct path.
    Can you please explain me: if i have a Z program then where and how to write number of Unit test classes. And how it will integrate to with our actual program/FM/any object
    Thanks
    Umashankar.

    You can create the ABAP Unit class as a local class in your program, FM, or class which will test the functionality of that individual code lines. Once you implement the ABAP Unit, you can then run the Unit Test by main menu > Execute > Unit Test. E.g. from Program, Program > Execute > Unit Test.
    Check this previous discussions:
    ABAP Unit, how to use
    Unit Testing concept
    Regards,
    Naimesh Patel

  • ABAP UNIT - Test Driven Development

    Dear ABAPers,
    I hope some of you may have also ventured into this area of Test Driven Development.  I have just started looking into this new and exciting way of development.  My understanding after having gone through the available blogs and some reading material on TDD, is that, we have to religiously embrace Object Oriented programing to actually benefit from TDD methodology.  That raised a big question in my mind, how do we implement this technique when we are coding in the user exits like MV45AFZZ, which is mostly classical ABAP programming?
    Please help me understand the TDD a bit more than I currently do.
    Thanks much,
    SMA.
    <- removed by moderator ->
    Edited by: Neil Gardiner on Sep 29, 2010 10:38 AM

    As Dirk already mentioned TDD is writing test before writing productive code. This approach is not limited to OO practices or unit tests.
    E.g. writing an eCatt script in advance that passes as soon the scenario is working, adheres to TDD practices also..
    Vice versa if one practices unit testing and oo patterns it is no TDD if the tests are written after the productive code.
    Regards
      Klaus

  • Abap unit test debug

    when use unit test,how to start up debug model?

    You can put breakpoints in your unit test methods (or helper methods) the same way you can in regular ABAP. As long as it is being executed in the foreground it should be tripped. I have noticed some quirky behavior about when it allows me to place a breakpoint in the code and when it places the breakpoint on the report statement at the beginning of my program, but it IS possible. I do it frequently.
    Regards,
    Andy

  • Issue in ABAP Unit Test

    Hi,
    I am having an issue in Unit Testing of Function Module. The issue is that Interface parameter of FM is not accessed in subroutine as the parameter goes like a field symbol. I get a dump while try to access the Interface parameter.
    Can anyone please help me out on this.

    * Following is my Unit Test Method
    METHOD get_user_formats.
         DATA lv_format   TYPE char35.
         PERFORM get_user_formats USING '2'.
         READ TABLE user_format INTO lv_format INDEX 1.
         " Expected Result
         cl_aunit_assert=>assert_equals( act = lv_format
                                         exp = 'DATE = MM/DD/YYYY').
       ENDMETHOD.     
    FORM get_user_formats USING datfm TYPE datfm.
       DATA: lv_format   TYPE char35.
       SELECT SINGLE ddtext FROM dd07t INTO lv_format
              WHERE domname = 'XUDATFM' AND
                   ddlanguage =  sy-langu AND domvalue_l = datfm.
       CONCATENATE 'DATE = ' lv_format INTO lv_format SEPARATED BY space.
       APPEND lv_format TO user_format.
       CLEAR lv_format.
    * Comment: user_format is a table in TABLES parameter of FM. It is having single field of type CHAR35
    ENDFORM.                    " get_user_formats
    Please note that I get dump ONLY at the time UNIT TESTING. Otherwise the program is running fine.

Maybe you are looking for

  • My mini=Mac has become slow as molasses and thespinning rainbowwheel interrupts everything. How to cure??

    How can I get rid of the spinning rainbow?

  • Does windows have a problem with iDVD DVDs?

    Works fine on Mac Works fine on Playstation Works fine on B&O DVD Doesn't work fine on Wintel PC. The DVD buttons are only sometimes activated - mosty they are not recognised and don't function. When they do function, it's only by pressing a little "

  • My ipod keeps blinking "do not disconnect"

    when i plugged my ipod in this morning it said the usual do not disconnect... but then it didnt register onto itunes so i unplugged it and the message stayed up and is still there... its been blinking for five minutes now and its unplugged... please

  • Wifi profile being disabled

    Hardware: Z10 STL100-3 OS 10.0.10.85 Have noticed that when my Z10 is unable to connect to Wifi the profile is automatically disabled, and I have to manually re-enable it. This happens both at work and at home where the failure to connect is temporar

  • Flash nav tree rolloff?

    http://www.papoosecreek.com/index.asp The web site page above is all Flash. I have created a movie holding the nav. It contains 6 nav buttons and their corresponding arrays (which are groups of other nav buttons). If one 'rolls on' any of the 6 butto