• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

What is meant by UTP preperation ?a

 
Ranch Hand
Posts: 212
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I don't know whether this is the right place to ask this question .

What is meant by UTP preperation for a Project? and how is this different from Functional specifications?

Thanks in advance.
 
PavanPL KalyanK
Ranch Hand
Posts: 212
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Move my question to the appropiate form please.
 
Marshal
Posts: 28226
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would move it if I had any idea what "UTP preparation" meant. I googled the term and found nothing... you aren't asking about twisted-pair cabling, are you?

Perhaps "UTP" is an acronym for something. If you don't know what, you should start by finding out. Google isn't going to be any help here.
 
PavanPL KalyanK
Ranch Hand
Posts: 212
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Paul , , I googled the term before posting , but i obtained results in the form of Java /J2EE resumes where they mentioned this term "Involved in preparing UTP"



so the reason i posted.

Anyway Thanks. somebody might answer some day
 
PavanPL KalyanK
Ranch Hand
Posts: 212
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey this is ,sorry for the confusion

UTP Unit Test Plan (software testing)

Thanks .
 
Ranch Hand
Posts: 2458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It would also help if you mention which IDE, version control or any other tool you're using.
 
Bauke Scholtz
Ranch Hand
Posts: 2458
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

PavanPL KalyanK wrote:Hey this is ,sorry for the confusion

UTP Unit Test Plan (software testing)

Thanks .


Oh.

I would just suggest to talk about it with your manager/project lead.
 
Paul Clapham
Marshal
Posts: 28226
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Okay: Unit TEST Plan. Now I know where to move it to.
 
Ranch Hand
Posts: 107
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Functional specifications - Provides the functional requirements of the project. It defines what the application is supposed to do.

Unit Test Plan(UTP) - Defines how you would carry out your unit testing. It usually contains unit test cases.

I am not sure how widely is Unit test plans used in the current age. It used to be popular with Rational Unified Process (RUP) Methodology. But with Agile and Test Driven Development, you directly jump in creating JUnit or TestNG unit test cases instead of documenting the unit test plan in a word document.

You may find some organizations who require you document the unit test cases for the sake of tracebility matrix to map the requirements mentioned in funtional specs to the unit test cases you intend to test. Also by reviewing the UTP (Which is usually written by the devloper who is supposed to implement a specific functionality), a tech lead or project lead figures out if the developer has understood the requirement, before he starts implementing the code. So a lot depends on the process adopted by the company you are working in.

Hope this helps.






 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic