Can anybody explain me difference between test cases and test data

Hi All,
Can anybody explain me difference between test cases and test data.
Testing procedure for FS.
Thanks & Regards,
Smitha

Hi,
Test case is a procedure how to do the testing of particular functionality and it consists the data that to be given for testing a particular requirement of the given Functional Spec and it also consists the result whether the desired functionality is fullfilling or not.
Regards
Pratap

Similar Messages

  • Can someone explain the difference between Boot Camp and Fusion 3?

    I just purchased a 13" MBP. I here users are installing Win7 on their MBP. I've read Apple has not offically said they are supporting Win7. Some people tell me that you can run Win7 in a Window while running MAC OS. Other people tell me you can boot to either Mac OS or Win7. So my question is...is Boot camp the same app as Fusion? Why would you run Win7 in a Window under MAC OS? Do you have to install all your Win Apps within the Win7 window?
    Any insight would be greatly appreciated. I've been a PC user for most of my career life. This is the first time I've ever purchased a Mac. First it was the iPhone, not the MAC.
    Thanks,
    --jeff

    is Boot camp the same app as Fusion?
    No.
    Why would you run Win7 in a Window under MAC OS?
    To switch between the different OSes very easily.
    Do you have to install all your Win Apps within the Win7 window?
    They need to be installed inside Windows.
    (49700)

  • Can someone explain the difference between photos app and iphoto for iphone?

    I recently downloaded the iphoto app to my iPhone 4s. I am hoping to clear up some space on my iphone and I deleted some pics from what I thought was the camera roll within iphoto. I noticed later that while attempting to change my wallpaper, I noticed that pics I thought I deleted were still on the phone as evidenced by their availability to be used as wallpaper. I checked that I had selected cameral roll and not photostream, where it would make sense the photos would still be there. When I left settings I noticed that I have iphoto and the phots app on my iphone. Do I need both? And if i want to delete photos, do I need to delete photos from the cameral roll within iphoto AND the photos app???? I really need someone to make sense of all this photo business!

    The "Photos" application is built into the phone and is meant only for viewing and making small edits (crop, auto-enhance, etc.) to photos in your Camera Roll and other photos synced onto your phone via iTunes.
    iPhoto for iOS is a new application which is meant to allow you to organize your photos, share them via sideshows or "journals" and make mode substantial edits (contrast, brightness, sharpness, photo effects, etc.)
    Keep in mind that iPhoto or any other app from the App Store does not have the ability to delete photos from your Camera Roll. What you did is probably hit the x icon which hides the photo from your iPhoto library but it remains in your Camera Roll. To delete photos, they must be deleted from the Photos app. Oce they are deleted from your Camera Roll they will no longer show up in iPhoto.

  • Can anybody explain the difference REDOLG vs ARCHIVE log files

    can anybody explain the difference REDOLG vs ARCHIVE log files?
    and the relation between redolog files and redolog buffers?
    thanx in advance

    Changes made to the database are recorded in the Redo log buffer. This Buffer contains Redo records or entries, which are a description of changes made to the database.
    The Redo Logs are critical in order to recover the database or to reconstruct data files and undo segments after a system crash or hardware failure.
    Each Oracle instance has only one log writer process (LGWR). The log writer operates in the background and writes all records from the Redo log buffer to the Redo log files. When the database operates in Archivelog mode, the redo logs are are archived before overwritten.

  • Hi, can anyone explain the difference between the models A1457 and ME432B/A of the iPone 5s. Thanks

    Hi, can anyone explain the difference between the models A1457 and ME432B/A of the iPone 5s.

    Hi Gary,
    Model # A1457 designates that it's the European market model, which I believe works on EE, Vodafone and O2 in the UK.
    ME432B/A is the part # that, in your case, I believe, desginates a 16GB Space Grey Unlocked version...
    Someone can correct me if I'm wrong on that
    Kev

  • Can someone explain the difference between width, maxWidth, explicitWidth, explicitMaxWidth?

    Can someone explain the difference between width, maxWidth,  explicitWidth, explicitMaxWidth of the UI component? I read the API and I  have no idea what do they mean.

    Width is the current width.  ExplicitWidth is set if you give an component
    an explicit width vs a temporary width via setActualSize.
    MaxWidth and minWidth factor in either the measuredMax/MinWidth or one set
    explicitly.

  • Could someone please explain the difference between Projects Intelligence and Projects Analytics?

    Could someone please explain the difference between Projects Intelligence and Projects Analytics?
    Thanks,
    Adrien

    Older iPads got 3G service and were called Wi-Fi + 3G. Newer iPads can connect to faster cellular networks and those are given different names by the major carrier so to simplify things Apple calls the newer models Wi-Fi + Cellular.
    iPads with 3G or Cellular are NOT used like a mobile phone. They do not make phone calls or send SMS or MMS text messages, They do connect to the data network and can connect to the web.

  • Can someone explain the difference between TIER_WEB and TIER_WEBDEV

    Hi All,
    We have two sets of values in Context file as below.
    <TIER_ADWEB oa_var="s_isAdWeb">NO</TIER_ADWEB>
    <TIER_ADFORMS oa_var="s_isAdForms">NO</TIER_ADFORMS>
    <TIER_ADFORMSDEV oa_var="s_isAdFormsDev">NO</TIER_ADFORMSDEV>
    <TIER_ADWEBDEV oa_var="s_isAdWebDev">NO</TIER_ADWEBDEV>
    Could you explain the difference between
    TIER_WEB and TIER_WEBDEV
    and
    TIER_ADFORMS and TIER_ADFORMSDEV

    These values in a shared APPL_TOP system. Pl see ML Doc 745580.1 (Apply Patches in a Shared Application Tier File System Environment) for an explanation.Not necessarily in Shared APPL_TOP, even in traditional multi-node installation you will find these values in the application context file.
    I never came across any document which describes the difference between TIER_WEBDEV and TIER_WEB, I just can say that these variables always have the same value.

  • The difference between FIELD-SYMBOL and normal DATA TYPE

    Dear experts,
    Please see the example below, both are output the same result.
    DATA: EXTERNAL_RECORD(4000),
          POSITION TYPE I,
          LENGTH TYPE N,
          ENTRY TYPE STRING.
    EXTERNAL_RECORD = '0005Smith0007Edwards0005Young'.
    DO.
      LENGTH = EXTERNAL_RECORD+POSITION(4).
      IF LENGTH = 0.
        EXIT.
      ENDIF.
      ADD 4 TO POSITION.
      MOVE EXTERNAL_RECORD+POSITION(LENGTH) TO ENTRY.
      WRITE ENTRY.
      ADD LENGTH TO POSITION.
      IF POSITION >= 4000.
        EXIT.
      ENDIF.
    ENDDO.
    --OR It can be written as--
    DATA: EXTERNAL_RECORD(4000),
          POSITION TYPE I,
          LENGTH TYPE N.
    FIELD-SYMBOLS <ENTRY>.
    EXTERNAL_RECORD = '0005Smith0007Edwards0005Young'.
    DO.
      LENGTH = EXTERNAL_RECORD+POSITION(4).
      IF LENGTH = 0.
        EXIT.
      ENDIF.
      ADD 4 TO POSITION.
      ASSIGN EXTERNAL_RECORD+POSITION(LENGTH) TO <ENTRY>.
      WRITE <ENTRY>.
      ADD LENGTH TO POSITION.
      IF POSITION >= 4000.
        EXIT.
      ENDIF.
    ENDDO.
    Is there any special circumstances we need to use FIELD-SYMBOL?
    Why is FIELD-SYMBOL is introduce in the first place?
    Kindly advice with example.
    Thanks in advance for those who can help me on this.

    HI,
    You can use field symbols to make the program more dynamic. In this example the name of a table control is substituted by a field symbol. Thus you cal call the form with any internal table, using the name of the table control as a parameter.
    Example
    form insert_row
    using p_tc_name.
    field-symbols <tc> type cxtab_control. "Table control
    assign (p_tc_name) to <tc>.
    insert 100 lines in table control
    <tc>-lines = 100.
    Field symbols allow you to:
    **     Assign an alias to a data object(for example, a shortened
            name for data objects structured through several hierarchies
            - <fs>-f instead of rec1-rec2-rec3-f)
    **     Set the offset and length for a string variably at runtime
    **     Set a pointer to a data object that you determine at runtime (dynamic ASSIGN)
    **     Adopt or change the type of a field dynamically at runtime
    **     Access components of a structure
    **     (from Release 4.5A) Point to lines of an internal table
            (process internal tables without a separate work area)
    Field symbols in ABAP are similar to pointers in other programming
    languages. However, pointers (as used in PASCAL or C) differ from ABAP
    field symbols in their reference syntax.
    The statement ASSIGN f to <fs> assigns the field f to field
    symbol <fs>. The field symbol <fs> then "points" to the
    contents of field f at runtime. This means that all changes to the
    contents of f are visible in <fs> and vice versa. You declare
    the field symbol <fs> using the statement FIELD-SYMBOLS: <fs>.
    Reference syntax
    Programming languages such as PASCAL and C use a dereferencing symbol
    to indicate the difference between a reference and the object to which
    it refers; so PASCAL would use p^ for a pointer instead of p, C would
    use *p instead of p. ABAP does not have any such dereferencing symbol.
    **     In PASCAL or C, if you assign a pointer p1 to a pointer p2,
    you force p1 to point to the object to which p2 refers (reference semantics).
    **     In ABAP, if you assign a field symbol <fs1> to a field
    symbol <fs2>, <fs1> takes the value of the data object to
    which <fs2> refers (value semantics).
    **     Field symbols in ABAP are always dereferenced, that is,
    they always access the referenced data object. If you want to
    change the reference yourself in ABAP, you can use the ASSIGN statement
    to assign field symbol <fs1> to field symbol <fs2>.
    Using field symbols
    You declare field symbols using the FIELD-SYMBOLS statement.
    They may be declared either with or without a specific type.
    At runtime you assign a field to the field symbol using the ASSIGN
    statement. All of the operations on the field symbol act on the field
    assigned to it.
    When you assign a field to an untyped field symbol, the field symbol
    adopts the type of the field. If, on the other hand, you want to assign
    a field to a typed field symbol, the type of the field and that of the
    field symbol must be compatible.
    A field symbol can point to any data object and from Release 4.5A,
    they can also point to lines of internal tables.
    The brackets (<>) are part of the syntax.
    Use the expression <fs> IS ASSIGNED to find out whether the field
    symbol <fs> is assigned to a field.
    The statement UNASSIGN <fs> sets the field symbol <fs> so
    that it points to nothing. The logical expression <fs>
    IS ASSIGNED is then false. The corresponding negative expression
    is IF NOT <fs> IS ASSIGNED.
    An unassigned field symbol <fs> behaves as a constant with
    type C(1) and initial value SPACE.
    MOVE <fs>
    TO dest     Transfers the initial value SPACE to the variable dest
    MOVE 'A' to <fs>     
    Not possible, since <fs> is a constant
    (runtime error).
    To lift a type restriction, use the CASTING addition in the
    ASSIGN statement. The data object is then interpreted as though
    it had the data type of the field symbol. You can also do this
    with untyped field symbols using the CASTING TYPE <type> addition.
    The danger with pointers is that they may point to invalid areas.
    This danger is not so acute in ABAP, because the language does not
    use address arithmetic (for example, in other languages, pointer p
    might point to address 1024. After the statement p = p + 10, it would
    point to the address 1034). However, the danger does still exist, and
    memory protection violations lead to runtime errors.
    A pointer in ABAP may not point beyond a segment boundary. ABAP does
    not have one large address space, but rather a set of segments.
    Each of the following has its own segment:
    *     All global data
    *     All local data
    *     Each table work area (TABLES)
    *     Each COMMON PART
    You should only let field symbols move within an elementary field or
    structure where ABAP allows you to assign both within the global data
    and beyond a field boundary.
    Rgds
    Umakanth

  • Can someone explain the difference between these to kerberos AFP listings

    I have been doing quite a bit of digging to solve a widespread AFP idle disconnect issue, and while comparing settings among multiple servers, I noticed a kerberos recond variation that I don't understand.
    Most of the servers under the APF settings list a record like this:
    afp:kerberosPrincipal = "afpserver/[email protected]"
    One in particular, lists a record like this that is comepletely different from the other servers:
    afp:kerberosPrincipal = "afpserver/LKDC:SHA1.F4848D1138AE9704A1A67C3F2F25AE98465D6465@LKDC:SHA1.F4848D1138AE9704A1A67C3F2F25AE98465D6465"
    Can anyone explain to me why the difference and what it means?

    Basically it's the Local Key Distribution Centre ostensibly used for peer to peer file sharing and Access Control Lists etc as compared to SSO in a Networked Directory environment such as OD, AD, eDirectory, OpenLDAP etc. Wikipedia explains it fairly well if you're interested?
    https://dreness.com/wikimedia/index.php?title=LKDC
    In practical terms I have seen it cause confusion sometimes when authenticating file shares. It usually happens when File Sharing has been started prior to configuring DNS Services properly and starting PM and/or OD. The AFP server preference file appears to be 'locked' with the LKDC info instead of the server one and networked users fail to authenticate when accessing a share. It's a rare-ish occurence (I've seen it happen a few of times) but can take a while to troubleshoot because defining shares and applying ACLs in the GUI shows no problems.
    However this may not be the case with whatever problems you may be having? It's easy to 'fix' though, simply unshare whatever you've shared, stop the service, remove the preference file, reboot the server, restart the service. Check the information in the preference file is what it should be.

  • Can u explain the difference between album book calendar icloud in iphoto

    In iphoto u have some different options to group photos, can someone tell me the difference between albums books calendar icloud and slideshows, i don't know which of them to use to group my photos.
    Thanks

    Albums are arbitrary collections of photos. You decide what photos go in what albums. In your list these are the only items for grouping photos.
    Books are exctly that. Books you design based on templates and buy in printed from from Apple. Ditto with Calendars
    iCloud is an online syncing service offered by Apple. In terms of iPhoto you're thinking of Photostreams. See
    http://support.apple.com/kb/PH2604
    or
    http://support.apple.com/kb/HT4486

  • Can anyone explain the difference between these 2 versions?

    I don't understand why Version 2 works and Version 1 does
    not. Both are on the main timeline, however Version 2 nests one
    clip inside the other. They both display correctly, however
    mouse-dragging only works on the Version 2. The events don't get
    fired for Version 1. Can anyone explain what's up?
    Version 1:
    this.createEmptyMovieClip("thisClip",getNextHighestDepth());
    thisClip.loadMovie("man.swf");
    thisClip.onPress = image_press;
    thisClip.onRelease = image_release;
    Version 2:
    this.createEmptyMovieClip("thisClip",getNextHighestDepth());
    thisClip.createEmptyMovieClip("man",
    thisClip.getNextHighestDepth());
    thisClip
    .man.loadMovie("man.swf");
    thisClip.onPress = image_press;
    thisClip.onRelease = image_release;
    The handlers are defined as simple calls to
    startDrag/stopDrag:
    function image_press() {
    this.startDrag(false);
    trace("man press");
    function image_release() {
    this.stopDrag();
    trace("man release");

    handlers applied to a movieclip (like your thisClip.onPress
    handler) is removed when that movieclip is the target of a
    loadMovie() statement. when loading is complete you can assign an
    onPress handler that functions as you expect. or you can use
    version 2 to target the child of a movieclip and assign handlers to
    the parent.

  • Who can tell me the difference between MDM,BW and ODS

    What's the difference between MDM/BW/ODS,and what aspect/domain does each of them emphasize.

    Thank Dirk,Anil for your wonderful answer.
    After study these docs on sap.com and your reply,I have other questions to ask:
    1. If I use MDM as a Enterprise's Data center repository,Is that mean I can give up other database such as Oracle,SQL Server,and build new application or shift those regacy non-SAP applications on MDM gradually,you know,if I retain these DB,I should syncharonize them cautiously,and it can not avoid "dirty data" between heterogeneous systems.
       Consider such a scenario,application A request data from MDM to modify,application B request the same data from MDM to query,then "dirty data" happened?
       So,I think if I use MDM as center data repository,then I should give up other DB,and these non-SAP systems should reference these data and deal its own business matter.
    2.When I implement MDM,Would the data in SAP R/3(such as PM/MM/FI/CO) also be replicated to MDM,then shared to other non-SAP systems?or these data needn't synchronize to MDM?
    3.consider such a scenario,I need SAP R/3 data to share with other non-SAP system,besides XI,should I need MDM,using MDM to implement data management and sharing.
    4.Dirk has noticed "MDM could also mean Meta Data Model ",so I want to ask if MDM fully compatiable with CIM(common information model) and I can create complex objected-oriented data and mutiple relationship in it?
    thanx for your answer again,Best regards
    jiansen

  • How can you tell the difference between ipad 2 and ipad 3 ?

    I need to know how can you tell the defferance between the Ipad 2 and Ipad 3 by just looking at it ?

    Well it hard to tell if you don't have the two side by side and compair it to...

  • Why can I have a difference between Transferred Records and Added Records

    Hello gurus,
    What could be the reason for the difference between the Transferred records and the added records in the request for an InfoObjects?
    I have in RSA3 6452 Records and in the Manage-InfoObject 1002 Records.
    thanks for your help

    - already existing master data (changed but not new)
    - start routine with deletion
    - duplicate records (with error handling activated)
    - end routine

Maybe you are looking for

  • Save As Other - Optimized PDF error

    I'm on OSX Mavericks, Acrobat XI. I read the other forum called "Reduce file size Acrobat X" but couldn't find an answer to my specific issue. Since upgrading to XI I've been unable to succesfully reduce the file size of a pdf. Here's my workflow: -

  • Exchange 2013 users cant connect to public folders on Exchange 2010

    Hi I recently migrated all users from exchange 2010 to 2013 and now nobody can connect to public folders.  Ive read several forums with similar issue, but none of the solutions have fixed my problem. My configuration on exchange 2013: ExternalClientA

  • My Windows XP disc will not load in bootcamp (although it works in virtual box). Any ideas?

    Windows XP was not booting up at all so I removed the partition and attempted to reinstall it. However it will not even load. The software on the mac partition is all up to date and I have run verify disk, repair disk permissions etc. What options do

  • Home sharing and Apple TV connection

    I have been trying to connect my Apple TV with my MacBook and it keep on saying my Apple ID or password was incorrect. I have changed the password numerous time and yet I am still unable to connect. Can someone help!! Please!!!

  • Why is Firefox using 50%+ of cpu activity and the longest time

    Checking Task Manager after frequent slowdowns and almost cont. disk activity ,I found in a 100h system idle time the highest user is firefox at 4h and 1.2million I/O writes. This happens after periods of not using the machine (left on) . At times it