Home > Archive > Software Engineering > May 2006 > Requirements management - Traceability
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Requirements management - Traceability
|
|
| timasmith@hotmail.com 2006-01-10, 4:09 am |
| Hi,
In my past work I am familiar with using the Rational tools and for
Requirements Management we used Req Pro. I have heard of but am not
familiar with Doors.
Now with a new open source project on the horizon I would either build,
but preferably find a tool to do the following:
1) Uniquely identify, categorize and detailed low level functional
requirements.
2) Embed the requirement ids in comments in the source code.
3) Create a suite of test cases for all requirements.
4) Generate reports of untested requirements or not yet implemented.
I suppose one might like to have a trace to a design - modules or
subsystems but I havent found that a worthy step - since the design is
a generalization of the implementation.
Req pro did not seem particularly complex - so it is tempting to build
a database driven tool - skipping the MS Word piece - instead
generating xml/html from the database of requirements.
What is everyone else that is not purchasing tools using - if it
matters the rest of the project uses Eclipse and JBoss.
thanks
Tim
| |
|
| timasmith wrote:
> In my past work I am familiar with using the Rational tools and for
> Requirements Management we used Req Pro. I have heard of but am not
> familiar with Doors.
>
> Now with a new open source project on the horizon I would either build,
> but preferably find a tool to do the following:
>
> 1) Uniquely identify, categorize and detailed low level functional
> requirements.
> 2) Embed the requirement ids in comments in the source code.
> 3) Create a suite of test cases for all requirements.
> 4) Generate reports of untested requirements or not yet implemented.
Suppose you write failing test cases before you write any new code that
passes the tests. This forces all your code to have test cases.
Now annotate each test case with the name of the feature it resolves.
From here, if you put any 'assert(false)' in any code, and run all the
tests, the list of tests that fail is the list of features which that line
of code supports.
The more, the better. This shows your code is tight.
--
Phlip
[url]http://www.greencheese.org/Z Land[/url] <-- NOT a blog!!!
| |
| David Lightstone 2006-01-10, 4:09 am |
|
<timasmith@hotmail.com> wrote in message
news:1136229415.216435.44720@g44g2000cwa.googlegroups.com...
> Hi,
>
> In my past work I am familiar with using the Rational tools and for
> Requirements Management we used Req Pro. I have heard of but am not
> familiar with Doors.
>
> Now with a new open source project on the horizon I would either build,
> but preferably find a tool to do the following:
>
> 1) Uniquely identify, categorize and detailed low level functional
> requirements.
> 2) Embed the requirement ids in comments in the source code.
> 3) Create a suite of test cases for all requirements.
> 4) Generate reports of untested requirements or not yet implemented.
You might want to think very carefully about your work process first.
Which, if any, of these 4 have you done using Requisite Pro?
>
> I suppose one might like to have a trace to a design - modules or
> subsystems but I havent found that a worthy step - since the design is
> a generalization of the implementation.
>
> Req pro did not seem particularly complex - so it is tempting to build
> a database driven tool - skipping the MS Word piece - instead
> generating xml/html from the database of requirements.
It is more difficult than you think. How do you plan to validate the
"database" for completeness and consistency?
>
> What is everyone else that is not purchasing tools using - if it
> matters the rest of the project uses Eclipse and JBoss.
Word and Access
>
> thanks
>
> Tim
>
| |
| timasmith@hotmail.com 2006-01-10, 4:09 am |
|
Phlip wrote:
<snip>
> Suppose you write failing test cases before you write any new code that
> passes the tests. This forces all your code to have test cases.
>
> Now annotate each test case with the name of the feature it resolves.
>
> From here, if you put any 'assert(false)' in any code, and run all the
> tests, the list of tests that fail is the list of features which that line
> of code supports.
>
> The more, the better. This shows your code is tight.
>
> --
> Phlip
> [url]http://www.greencheese.org/Z Land[/url] <-- NOT a blog!!!
I do like the concept of failing a method will highlight tests/features
that you wrote tests for.
However you cannot possibly write all test cases for a large system -
the number of possibilities would be almost endless.
Also this only tells you what you have coded - not what you have yet to
code.
And finally analysts work with end users to manage requirements -
having them annotate code is not going to work as a communication tool
to developers.
| |
| timasmith@hotmail.com 2006-01-10, 4:09 am |
| With Req Pro I have done all 4 - I imported source code into Req Pro
and marked up the methods which mapped to requirements. Of course it
is impossible to maintain but was useful to provide a one time coverage
analysis and later to direct new developers to where some of the
requirements could be found in the code.
Not sure what you mean about validating the database - by having a
simple table of requirements it is complete and consistent - as long as
you break down requirements into individual entitities and only use the
database - not fully realistic but useful for most of the functional
requirements.
Ok I will use Access, my one table - and auto generate HTML documents
from it - rudimentary but will do for now.
| |
|
| timasmith wrote:
> However you cannot possibly write all test cases for a large system -
> the number of possibilities would be almost endless.
You can, however, convert each requirement into a test case. Otherwise it's
not a fully analyzed requirement.
Note this pushes the definition of test coverage out to the definition of
requirements analysis.
> Also this only tells you what you have coded - not what you have yet to
> code.
Right.
> And finally analysts work with end users to manage requirements -
> having them annotate code is not going to work as a communication tool
> to developers.
I have not done this yet, but there are those who invite such analysts to
write test cases, using simple tools like spreadsheets or web sites.
--
Phlip
[url]http://www.greencheese.org/Z Land[/url] <-- NOT a blog!!!
| |
| David Lightstone 2006-01-10, 4:09 am |
|
<timasmith@hotmail.com> wrote in message
news:1136249026.744232.182020@o13g2000cwo.googlegroups.com...
> With Req Pro I have done all 4 - I imported source code into Req Pro
> and marked up the methods which mapped to requirements. Of course it
> is impossible to maintain but was useful to provide a one time coverage
> analysis and later to direct new developers to where some of the
> requirements could be found in the code.
My opinion, for what it is worth, is that unless you have maintained it, you
haven't done it. The reason being - nobody cares about the intermediary
steps, only the final result. The result that corresponds to the product
released to the client. If the 4 are not covered in that final result, they
haven't been done
>
> Not sure what you mean about validating the database - by having a
> simple table of requirements it is complete and consistent - as long as
> you break down requirements into individual entitities and only use the
> database - not fully realistic but useful for most of the functional
> requirements.
At the simplest level, those requirements in the database. They are
statements in a human readable language - any spelling mistakes? What about
grammer errors? How about ambiguities? etc
How do you know you do not have 2 inconsistent requirements? Certainly not
because you have carefully entered things into the database.You must have
done something that serves to validate. Perhaps you reviewed them with
someone else.
What about duplicate requirements? It is real easy to enter the same
requirement twice./ (done it many times myself)
>
> Ok I will use Access, my one table - and auto generate HTML documents
> from it - rudimentary but will do for now.
1 table!!!!!!
3 - 4 more years of work left. Have fun
>
| |
| Thad Smith 2006-01-10, 4:09 am |
| Phlip wrote:
> timasmith wrote:
>
>
> You can, however, convert each requirement into a test case. Otherwise it's
> not a fully analyzed requirement.
>
> Note this pushes the definition of test coverage out to the definition of
> requirements analysis.
In my usage, test coverage is the percentage of the total amount of
logic that can be invoked from the external environment, which depends
on, among other things, the way that the code is designed. For ease of
implementation or efficiency, the general requirement may be met by
choosing among six cases in the code. Without knowing the design, you
cannot claim to have total test coverage.
--
Thad
| |
|
| Thad Smith wrote:
> In my usage, test coverage is the percentage of the total amount of logic
> that can be invoked from the external environment, which depends on, among
> other things, the way that the code is designed. For ease of
> implementation or efficiency, the general requirement may be met by
> choosing among six cases in the code. Without knowing the design, you
> cannot claim to have total test coverage.
If you write "too many" tests, and if they are all cheap and aggressive,
they might fail if the resulting application would have no bugs. Sometimes
this technique can force the application to be so decoupled and testable
that the odds of a bug get much lower than with exhaustive testing.
So run the tests after every few edits, so you can back out harmless edits
that broke the tests. Then make more careful edits.
--
Phlip
[url]http://www.greencheese.org/Z Land[/url] <-- NOT a blog!!!
| |
| alcanazar 2006-01-10, 4:09 am |
| > With Req Pro I have done all 4 - I imported source code into Req Pro
> and marked up the methods which mapped to requirements. Of course it
> is impossible to maintain but was useful to provide a one time coverage
> analysis and later to direct new developers to where some of the
> requirements could be found in the code.
Interesting. I should look into Req Pro.
You may wish to map out your desired process first. From there
you can see which parts can be easily implemented by the tools
you are familiar with. You can add new tools as you go. Eventually
you can fill in the manual steps with new tools and scripts.
> Ok I will use Access, my one table - and auto generate HTML documents
> from it - rudimentary but will do for now.
The defined process gives everyone a road map to walk them
through the manual steps that bridge between the tools. It is very
helpful for bringing new people onboard and is also a nice reference
for experienced team members when they need to perform a step
they are unfamiliar with or do infrequently.
The map also helps when you find a new tool that you wish to use
but doesn't quite fit your process. You use your old process as
a baseline for a new process and it can provide a check list to
assure that the critical steps are in your new process.
Other Points
Rather than embedding the requirements directly into the code,
you may wish to include an URL to a web page that provides
the traceability. You can rig your CM system to run your source
through a documentation tool to generate a web based listing
that then links to the requirements. You can provide links to
design information as well. You might even be able to rig the CM
system to generate a link back to the managed source code and
thus provide a quick link for updating.
That aside, You may find that some requirements will not easily
map to the source code. Some may require a full system to test.
Performance requirements are often like this. You may find it
better to map system requirements to tests than specific code.
Unit testing can cover most of the basic testing and might not map
back to system tests. A well-coded class can have methods that
your system does not use.
You may wish to run a test coverage tool to see how much of the
code your tests do cover. I have seen fairly complete functional test
suites that cover only half the code.
Alcanazar
| |
| Wayne Woodruff 2006-01-10, 4:09 am |
|
>You may wish to map out your desired process first. From there
>you can see which parts can be easily implemented by the tools
>you are familiar with. You can add new tools as you go. Eventually
>you can fill in the manual steps with new tools and scripts.
Amen. Nothing bothers me more than to have people solve a problem by
picking a tool. Solve the problem, then find a tool that helps. If
you bind the solution to the tool, you will likely not solve the
problem and be stuck with a tool that does not meet your espectations.
Wayne Woodruff
http://www.jtan.com/~wayne
| |
| Andrew Gabb 2006-01-10, 4:09 am |
| FWIW, a few years ago we formally evaluated the then commonly
available RM tools against detailed requirements. Requisite and
Doors were included, and both scored well.
Initially we intended to also consider what we could achieve with a
home-grown DB written in Access in a couple of w s by a capable
developer. After reviewing the better tools, we decided not to
bother - that we could get nowhere near the functionality that the
other tools had with 2 w s effort. To put it another way, the
decision to buy vs. build was a no-brainer.
We also knew of several orgs who had spent a lot of effort building
something then eventually bought a commercial tool.
YMMV
Andrew
timasmith@hotmail.com wrote:
> Hi,
>
> In my past work I am familiar with using the Rational tools and for
> Requirements Management we used Req Pro. I have heard of but am not
> familiar with Doors.
>
> Now with a new open source project on the horizon I would either build,
> but preferably find a tool to do the following:
>
> 1) Uniquely identify, categorize and detailed low level functional
> requirements.
> 2) Embed the requirement ids in comments in the source code.
> 3) Create a suite of test cases for all requirements.
> 4) Generate reports of untested requirements or not yet implemented.
>
> I suppose one might like to have a trace to a design - modules or
> subsystems but I havent found that a worthy step - since the design is
> a generalization of the implementation.
>
> Req pro did not seem particularly complex - so it is tempting to build
> a database driven tool - skipping the MS Word piece - instead
> generating xml/html from the database of requirements.
>
> What is everyone else that is not purchasing tools using - if it
> matters the rest of the project uses Eclipse and JBoss.
>
> thanks
>
> Tim
>
--
Andrew Gabb
email: agabb@tpgi.com.au Adelaide, South Australia
phone: +61 8 8342-1021, fax: +61 8 8269-3280
-----
| |
| Robert C. Martin 2006-01-23, 7:03 pm |
| On 2 Jan 2006 16:37:57 -0800, timasmith@hotmail.com wrote:
>
>Phlip wrote:
><snip>
>
>I do like the concept of failing a method will highlight tests/features
>that you wrote tests for.
>
>However you cannot possibly write all test cases for a large system -
>the number of possibilities would be almost endless.
True. But what you *can* write are test cases that justifies the
existence of every line of code in the system. You may not get 100%
path coverage, but you can certainly get 100% line and branch
coverage.
>Also this only tells you what you have coded - not what you have yet to
>code.
If you write the failing test cases first, then those that fail are a
good indication of what is yet to be coded. I use acceptance tests
for that purpose (written in FitNesse). I write my unit tests first;
but only *seconds* before I make them pass.
>And finally analysts work with end users to manage requirements -
>having them annotate code is not going to work as a communication tool
>to developers.
Analysts *can* write test cases in FitNesse. And programmers must
bind those test cases to the code. Therefore you get traceability.
-----
Robert C. Martin (Uncle Bob) | email: unclebob@objectmentor.com
Object Mentor Inc. | blog: www.butunclebob.com
The Agile Transition Experts | web: www.objectmentor.com
800-338-6716
"The aim of science is not to open the door to infinite wisdom,
but to set a limit to infinite error."
-- Bertolt Brecht, Life of Galileo
| |
| Robert C. Martin 2006-01-23, 7:03 pm |
| On 2 Jan 2006 11:16:55 -0800, timasmith@hotmail.com wrote:
>What is everyone else that is not purchasing tools using - if it
>matters the rest of the project uses Eclipse and JBoss.
I've been using FitNesse for many of the projects I've been working
on, and consulting for. It make a nice requirements tracker; and
since it's also a way to capture and execute FIT tests, it makes a
nice way to verify that the requirements have been satisfied.
-----
Robert C. Martin (Uncle Bob) | email: unclebob@objectmentor.com
Object Mentor Inc. | blog: www.butunclebob.com
The Agile Transition Experts | web: www.objectmentor.com
800-338-6716
"The aim of science is not to open the door to infinite wisdom,
but to set a limit to infinite error."
-- Bertolt Brecht, Life of Galileo
| |
|
|
"Phlip" <phlipcpp@yahoo.com> wrote in message
news:_wfuf.216$i81.122@newssvr19.news.prodigy.com...
>
> Suppose you write failing test cases before you write any new code that
> passes the tests. This forces all your code to have test cases.
>
> The more, the better. This shows your code is tight.
>
Testing is one useful aspect of program validation and verification.
However, one must never rely on testing alone to ensure the correctness
of a program.
Richard Riehle
| |
| Laurent Bossavit 2006-02-11, 6:59 pm |
| Richard,
> However, one must never rely on testing alone to ensure the correctness
> of a program.
What if you don't have the source code ?
Laurent
| |
|
|
"Laurent Bossavit" <laurent@dontspambossavit.com> wrote in message
news:MPG.1e5873edfff28c539899f4@news.noos.fr...
> Richard,
>
>
> What if you don't have the source code ?
>
You make the best of a bad situation. Sometimes we can
reverse engineer. Other times we can take a cleanroom
approach. As a last resort, one may invoke the assistance
of some benign deity, but that has not proven too successful
on most projects.
Richard Riehle
| |
| David Lightstone 2006-02-13, 3:58 am |
|
"Laurent Bossavit" <laurent@dontspambossavit.com> wrote in message
news:MPG.1e5873edfff28c539899f4@news.noos.fr...
> Richard,
>
>
> What if you don't have the source code ?
Happens all the time that is both black box testing and validation testing.
>
> Laurent
>
| |
| timasmith 2006-04-27, 9:18 pm |
| quote: Originally posted by timasmith@hotmail.com
Hi,
In my past work I am familiar with using the Rational tools and for
Requirements Management we used Req Pro. I have heard of but am not
familiar with Doors.
Now with a new open source project on the horizon I would either build,
but preferably find a tool to do the following:
1) Uniquely identify, categorize and detailed low level functional
requirements.
2) Embed the requirement ids in comments in the source code.
3) Create a suite of test cases for all requirements.
4) Generate reports of untested requirements or not yet implemented.
I suppose one might like to have a trace to a design - modules or
subsystems but I havent found that a worthy step - since the design is
a generalization of the implementation.
Req pro did not seem particularly complex - so it is tempting to build
a database driven tool - skipping the MS Word piece - instead
generating xml/html from the database of requirements.
What is everyone else that is not purchasing tools using - if it
matters the rest of the project uses Eclipse and JBoss.
thanks
Tim
Seems like there is a reasonable open source requirements management tool ... http://www.osrmt.com
Still a little young in the game but holds promise if it stays active on sourceforge.ent | |
| Soft4All 2006-05-16, 6:39 am |
| CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality
of service! Real cd-catalog!!!
Welcome searchers and users of softwares which we can offer. We would like to offer you some important
softwares you are looking on our site http://soft4all.biz Full version of software.
1. Professional cracking of any kind of software (CAD, CAM, CAE, EDA, GIS, PCB, FEA, FEM, CNC, CFD, PDS, 3D, Optics etc.)
designed for any kind of operating systems (Windows 95/98/ME/2000/XP, Linux, FreeBSD, OS/2, MAC OS etc.)
2. Producing keygens, licenses for different protection systems (FlexLM, SentinelLM, ElanLM, CrypKey, etc.)
3. Producing emulators for any kind of dongles (SentinelPro, SentinelSuperPro, Hasp4, Hardlock, WIBU, Guardant, etc.)
4. Documentation (tutorials and help). We will reply very fast.
We have very big interes to build good and long relations.
All Software Listed as followed are Unlimited version! Their function
is completely the same as the original retail version! the Only exception
is they NO need any type of hardlock, such as Dongle etc. that says, you can
install and use on any number of computer, All are NO limit to time and func
tion!
http://Soft4all.biz
http://Soft4all.biz
http://Soft4all.biz
Here is an example of the most popular offered software :
-------------------------------------------------------------------------------------
!!!Please don't ask this www-board. We dont'contact you in this www-board.!!!
-------------------------------------------------------------------------------------
FTP DOWNLOAD 2D3 BOUJOU THREE V3.0-ISO 1CD + crack + keygen + serial
FTP DOWNLOAD 3DALIENS GLU3D V13.05 FOR MAYA 6.5 + crack + FTP DOWNLOAD BENTLEY.Stuctural.v8.05.02.12 + crack + keygen + serial
FTP DOWNLOAD BENTLEY.Stuctural.v8.05.03.62 + crack + keygen + serial
FTP DOWNLOAD BENTLEY.TriForma.IFC.2x.Interface.v8.05.02.17 + crack + keygen + serial
FTP DOWNLOAD Bergen Fill Vol. 1 + crack + keygen + serial
FTP DOWNLOAD Bergen Fill Vol. 2 + crack + keygen + serial
FTP DOWNLOAD Bernina Artista 3.0 + crack + keygen + serial
FTP DOWNLOAD Bernina Artista 4.0 + crack + keygen + serial
FTP DOWNLOAD Bes-100E v 2.13 + crack + keygen + serial
FTP DOWNLOAD Bes-100E v 2.14 + crack + keygen + serial
FTP DOWNLOAD BETTER HOMES AND GARDENS LANDSCAPE AND DECK DESIGNER V7.0 + crack + keygen + serial
FTP DOWNLOAD Biographic AI Implant v1.81 for Maya 5.0 + crack + keygen + serial
FTP DOWNLOAD Blaupunkt Teleatlas Benelux DX 2005,2006 + crack + keygen + serial
FTP DOWNLOAD Bluecontrol v2.5 SR2 + crack + keygen + serial
FTP DOWNLOAD BlueMarble Geographic Transformer v5.1.1.3 + crack + keygen + serial
FTP DOWNLOAD BobCAD-CAM 20.2 + crack + keygen + serial
FTP DOWNLOAD Bobcad-CAM AND Bobart v20.1 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM AND BOBART V20.2 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM V20.5 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM_AND_BOBART_V20.2 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM_AND_BOBART_V20.6 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAMAND BOBART V20.4 + crack + keygen + serial
FTP DOWNLOAD BOBWIRE V19.3 + crack + keygen + serial
FTP DOWNLOAD BOEING GIS FEATURE COLLECTION MODULE V1.2 FOR BOEING SOFTPLOTTER V4.1 + crack + keygen + serial
FTP DOWNLOAD BOEING SOFTPLOTTER V4.1 WITH.AIRFIELD + crack + keygen + serial
FTP DOWNLOAD BOEING.KORK.DIGITAL.MAPPING.SYSTEM.V14.0 + crack + keygen + serial
FTP DOWNLOAD Borland StarTeam 5.3 + crack + keygen + serial
FTP DOWNLOAD BricsCad Architecturals v4.1.0015 for AutoCAD + crack + keygen + serial
FTP DOWNLOAD BricsCad Architecturals v4.1.0015 for BricsCad + crack + keygen + serial
FTP DOWNLOAD BricsCad Pro v6.0 0012 + crack + keygen + serial
FTP DOWNLOAD BricsCad Pro v6.0.0006 + crack + keygen + serial
FTP DOWNLOAD BricsCad Pro v6.2.0010 + crack + keygen + serial
FTP DOWNLOAD BricsCad Structural Frames.v2.1.0003 + crack + keygen + serial
FTP DOWNLOAD Broomstick BASS VSTI 1.0 + crack + keygen + serial
FTP DOWNLOAD Brother PE 4 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5 Designer CD-BOOK + crack + keygen + serial
FTP DOWNLOAD Brother PE 5.5 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5.6 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5.6 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 6 Designer + crack + keygen + serial
FTP DOWNLOAD Bryce 5.0 + crack + keygen + serial
FTP DOWNLOAD BRYCE 5.5 + crack + keygen + serial
FTP DOWNLOAD Buzz Edit + crack + keygen + serial
FTP DOWNLOAD Buzz Edit 3.38 WITH BUZZ TOOLS + crack + keygen + serial
FTP DOWNLOAD Buzz Explorer 1.02 + crack + keygen + serial
FTP DOWNLOAD Cabinet Vision Solid 3.5 + crack + keygen + serial
FTP DOWNLOAD CABINET VISION SOLID v4.0 + crack + keygen + serial
FTP DOWNLOAD CABINET VISION SOLID V4.0 + crack + keygen + serial
FTP DOWNLOAD CAD EASY EASYSITE AUTOCAD V2 + crack + keygen + serial
FTP DOWNLOAD Cadance confrml50 base ISO 1CD + crack + keygen + serial
FTP DOWNLOAD CADCAM-E CAT5WORKS V2.0 + crack + keygen + serial
FTP DOWNLOAD CADCAM-E PSCAT5 V2.2 + crack + keygen + serial
FTP DOWNLOAD CADCAM-E PSPRO V3.1 + crack + keygen + serial
FTP DOWNLOAD CADENCE ALLEGRO SPB RELEASE 15.5 + crack + keygen + serial
FTP DOWNLOAD Cadence Allegro SPB V15.5 + crack + keygen + serial
FTP DOWNLOAD Cadence Allegro SPB V15.5 + crack + keygen + serial
FTP DOWNLOAD CADENCE ISSOLAME V6.9 + crack + keygen + serial
FTP DOWNLOAD CADENCE ORCAD UNISON SUITE PRO V10.5 + crack + keygen + serial
FTP DOWNLOAD Cadence spb 15.2 update + crack + keygen + serial
FTP DOWNLOAD Cadence.Allegro.Silicon.Package.Board.V15.5.1 + crack + keygen + serial
FTP DOWNLOAD Cadence.Specman.Elite.V5.0 + crack + keygen + serial
FTP DOWNLOAD CAD-KAS PDF Split and Merge v1.0 + crack + keygen + serial
FTP DOWNLOAD Cadlink Signlab 7 rev 1 + crack + keygen + serial
FTP DOWNLOAD CADlink SignLab 7.0 R1 Printer Packages CADlink SignLab e6.1 Revision 6 + crack + keygen + serial
FTP DOWNLOAD CADlink SignLab 7.0 Revision 1 + crack + keygen + serial
FTP DOWNLOAD CADRASTER LTX V6.10 FOR AUTOCAD + crack + keygen + serial
FTP DOWNLOAD CAD-Schroer.Medusa.4.v2 + crack + keygen + serial
FTP DOWNLOAD CadSoft.Eagle.v4.16r1 + crack + keygen + serial
FTP DOWNLOAD CAE.PowerTools.FEvis.Publisher.v1.1.0.9 + crack + keygen + serial
FTP DOWNLOAD CAEFEM v9.0 + crack + keygen + serial
FTP DOWNLOAD CAEFEM.v8.21 + crack + keygen + serial
FTP DOWNLOAD Cakewalk Rapture 1.0 VSTi DXi RTAS AU + crack + keygen + serial
FTP DOWNLOAD Caligari Truespace v6.5 + crack + keygen + serial
FTP DOWNLOAD CAM Expert v2.0.4.8 + crack + keygen + serial
FTP DOWNLOAD CAM_Expert_v2.0.4.7 + crack + keygen + serial
FTP DOWNLOAD CAM_Expert_v2.0.4.8 + crack + keygen + serial
FTP DOWNLOAD CAM350 v8.7 + crack + keygen + serial
FTP DOWNLOAD CAM350 v8.7.1 + crack + keygen + serial
FTP DOWNLOAD CAM350.v9.0.1 + crack + keygen + serial
FTP DOWNLOAD GGU.Time.Graph.v6.14 + crack + keygen + serial
FTP DOWNLOAD GGU.Time.Graph.v6.15 + crack + keygen + serial
FTP DOWNLOAD GGU.Triaxial.v3.12 + crack + keygen + serial
FTP DOWNLOAD GGU.Underpin.v3.10 + crack + keygen + serial
FTP DOWNLOAD GGUCAD.v5.20 + crack + keygen + serial
FTP DOWNLOAD GGU-Pumptest.v2.11 + crack + keygen + serial
FTP DOWNLOAD GGU-Retain v4 21 + crack + keygen + serial
FTP DOWNLOAD GGU-Stability.v7.10 + crack + keygen + serial
FTP DOWNLOAD GGU-Transient.v4.10 + crack + keygen + serial
FTP DOWNLOAD GGU-Triaxial.v3.13 + crack + keygen + serial
FTP DOWNLOAD GIBBSCAM 2005 V7.7 + crack + keygen + serial
FTP DOWNLOAD GisBase Pac 1.18 + crack + keygen + serial
FTP DOWNLOAD PTC ROUTED SYSTEMS DESIGNER V6.0 + crack + keygen + serial
FTP DOWNLOAD PTC ROUTED SYSTEMS DESIGNER V6.0 M010 + crack + keygen + serial
FTP DOWNLOAD PTC.Pro.ENGINEER.WILDFIRE.2.0.Datecode.2004490 + crack + keygen + serial
FTP DOWNLOAD PTC_INTRALINK_V3.4_M010 + crack + keygen + serial
FTP DOWNLOAD PTC_PRO_ENGINEER_WILDFIRE_V2.0_M0100_ISO 3CD + crack + keygen + serial
FTP DOWNLOAD PTC_ROUTED_SYSTEMS_DESIGNER_V5.5 + crack + keygen + serial
FTP DOWNLOAD Punto 6.01 for XP + crack + keygen + serial
FTP DOWNLOAD Puntograms Proline Designer 7.6.3 + crack + keygen + serial
FTP DOWNLOAD Puntotek Gold 1.5 + crack + keygen + serial
FTP DOWNLOAD Pure Motion EditStudio v4.13 + crack + keygen + serial
FTP DOWNLOAD QNX Momentics Professional V6.2.1A + crack + keygen + serial
FTP DOWNLOAD QNX Neutrino 6.2.1 For WinNT + crack + keygen + serial
FTP DOWNLOAD QuarkXPress 7.0 + crack + keygen + serial
FTP DOWNLOAD QUARKXPRESS V6.1 MAC OSX ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Quest QDesigner Physical Architect Enterprise 12 + crack + keygen + serial
FTP DOWNLOAD Quicklogic Quickworks v9.64 + crack + keygen + serial
FTP DOWNLOAD Rainbow EMBROIDERY V5.99 Gs( DOS) + crack + keygen + serial
FTP DOWNLOAD RAINDROP_GEOMAGIC_STUDIO_V7.0 + crack + keygen + serial
FTP DOWNLOAD Raytech - Bsb Nautical Carts - Worldwide + crack + keygen + serial
FTP DOWNLOAD REALVIZ Stitcher v4.0 + crack + keygen + serial
FTP DOWNLOAD REALVIZ Stitcher v4.0 incl_Keygen + crack + keygen + serial
FTP DOWNLOAD Rebis AutoPIPE 6.20 + crack + keygen + serial
FTP DOWNLOAD REDASOFT VISUAL CLONING V3.0 + crack + keygen + serial
FTP DOWNLOAD REDASOFT_VISUAL_CLONING_V3.0 + crack + keygen + serial
FTP DOWNLOAD REIUSA STAAD FOUNDATION V2.0 + crack + keygen + serial
FTP DOWNLOAD REIUSA Staad Pro V2005 + crack + keygen + serial
FTP DOWNLOAD REIUSA.STAAD.PRO.V2005 + crack + keygen + serial
FTP DOWNLOAD RENESAS CC32R V4.30 + crack + keygen + serial
FTP DOWNLOAD RENESAS NC30WA V5.30 + crack + keygen + serial
FTP DOWNLOAD RES2DINV v3.54.44 + crack + keygen + serial
FTP DOWNLOAD Research.Systems.Envi.v4.1 + crack + keygen + serial
FTP DOWNLOAD Research.Systems.IDL.v6.3 + crack + keygen + serial
FTP DOWNLOAD RESEARCHSYSTEM SILIDAR V1.0 + crack + keygen + serial
FTP DOWNLOAD Richpeace Design Pro 2000 V 4.1 + crack + keygen + serial
FTP DOWNLOAD RichPeace Design Pro 2000 V 4.28 + crack + keygen + serial
FTP DOWNLOAD RISA TECHNOLOGIES RISA 3D V5.5 + crack + keygen + serial
FTP DOWNLOAD RISA TECHNOLOGIES RISA FLOOR V2.0 + crack + keygen + serial
FTP DOWNLOAD ROBOLAB V2.5.4 MAC OSX ISO 1CD + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE EXAMINE3D V4.099 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCDATA V3.015 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCFALL V4.042 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCPLANE V2.032 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCSUPPORT V3.005 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE SLIDE V5.019 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE SWEDGE V4.080 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE UNWEDGE V3.009 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE_ROCSUPPORT_V3.006 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE_SLIDE_V5.021 + crack + keygen + serial
FTP DOWNLOAD UGS SOLIDEDGE V17 + crack + keygen + serial
FTP DOWNLOAD UGS SOLIDEDGE V17.0 + crack + keygen + serial
FTP DOWNLOAD UGS.I-DEAS.NX.V11M3 + crack + keygen + serial
FTP DOWNLOAD UGS.TECHNOMATIX.EM-WORKPLACE.V7.1.2 + crack + keygen + serial
FTP DOWNLOAD UGS_IMAGEWARE_V12.0 + crack + keygen + serial
FTP DOWNLOAD UGS_NX_V3.0_GERMAN_DOKUMENTATION + crack + keygen + serial
FTP DOWNLOAD UGS_SOLID_EDGE_V16_UPDATE_5 + crack + keygen + serial
FTP DOWNLOAD ULEAD DVD WORKSHOP V2.0 CDVERSION ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Ulix Stitch 2.0 + crack + keygen + serial
FTP DOWNLOAD Ultra Flex Express 7.5 + crack + keygen + serial
FTP DOWNLOAD ULTRA-Flex 7.5 for STIKA + crack + keygen + serial
FTP DOWNLOAD ULTRA-Flex Interactive simulator 7 + crack + keygen + serial
FTP DOWNLOAD UltraLine Routenplaner v4.0 + crack + keygen + serial
FTP DOWNLOAD UMC-0.18u FE lib + crack + keygen + serial
FTP DOWNLOAD Unigraphics NX4 CAST + crack + keygen + serial
FTP DOWNLOAD VAG ElsaWin Data v3.20 + crack + keygen + serial
FTP DOWNLOAD VAG ElsaWin v3.20 + crack + keygen + serial
FTP DOWNLOAD Vector Super (80,000 Super Designs) + crack + keygen + serial
FTP DOWNLOAD VectorFX VOL 150.000 VectorLogos + crack + keygen + serial
FTP DOWNLOAD VectorFX Vol2 Design and Artwork + crack + keygen + serial
FTP DOWNLOAD Vectorworks 11 + crack + keygen + serial
FTP DOWNLOAD Vehicle Graphics + crack + keygen + serial
FTP DOWNLOAD VENTURE FENIX V4.1 + crack + keygen + serial
FTP DOWNLOAD VERO_MACHINING_STRATEGIST_V6.1 + crack + keygen + serial
FTP DOWNLOAD Versata Logic Suite v5.6.4 ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Versata Logic Suite v5.6.4 ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Vinyl CAD 2 + crack + keygen + serial
FTP DOWNLOAD Vinyl Express Master LXi + crack + keygen + serial
FTP DOWNLOAD Vinyl Ripper v1.0 + crack + keygen + serial
FTP DOWNLOAD Visiosonic PCDJ Red VRM 7.2 + crack + keygen + serial
FTP DOWNLOAD Visual Flow 4.1 + crack + keygen + serial
FTP DOWNLOAD Visual Mill 5.01 + crack + keygen + serial
FTP DOWNLOAD Visual.Mill.v5.08-SHOCK + crack + keygen + serial
FTP DOWNLOAD VNI PV Wave Product Family v8.5.1 + crack + keygen + serial
FTP DOWNLOAD Volvo Wiring v03 2005 + crack + keygen + serial
FTP DOWNLOAD VOX 3D Planer + crack + keygen + serial
FTP DOWNLOAD VRML Export 2006 For AutoCAD v3.4.0.50317 + crack + keygen + serial
FTP DOWNLOAD VTC AUTOCAD 2005 FOR ARCHITECTS + crack + keygen + serial
FTP DOWNLOAD VTC AUTODESYS FORMZ R.I.P BRIAN 83 05 + crack + keygen + serial
FTP DOWNLOAD VXCADCAM V11.21 + crack + keygen + serial
FTP DOWNLOAD Walker Effects v2.1 Professional for Adobe After Effects + crack + keygen + serial
FTP DOWNLOAD Wasatch 5.0 + crack + keygen + serial
FTP DOWNLOAD Wilcom 6.1D + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.0 + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.1D + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.1E + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.1F SP3 + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.2G + crack + keygen + serial
FTP DOWNLOAD Wilcom 8.0 PET CD [ Interactive Training Tutorial for Wilcom 8 ] + crack + keygen + serial
FTP DOWNLOAD Wilcom 8.0M SP1 + crack + keygen + serial
FTP DOWNLOAD Wilcom 8.0N + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 Exploring ES 9 With WorkFlow + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 PET CD + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 WorkFlow + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0R WITH SP3 + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0R WITH SP4 + crack + keygen + serial
FTP DOWNLOAD Wilcom Tecos Mira 2000 V 4.2 + crack + keygen + serial
FTP DOWNLOAD WinDaisy 4.5 + crack + keygen + serial
FTP DOWNLOAD Wings 2000 V4.0 + crack + keygen + serial
FTP DOWNLOAD Wings 3.0 + crack + keygen + serial
FTP DOWNLOAD Wings Xp 1.50 + crack + keygen + serial
FTP DOWNLOAD Wings Xp 1.80 + crack + keygen + serial
FTP DOWNLOAD WinLens Plus v1.1 6a + crack + keygen + serial
FTP DOWNLOAD Winner V6.1 a1 + crack + keygen + serial
FTP DOWNLOAD Wm Kat Atris v3.11 + crack + keygen + serial
FTP DOWNLOAD Wolfram MatheMatica V5.2 + crack + keygen + serial
FTP DOWNLOAD Wonderware Active Factory v9.1.000.0216 + crack + keygen + serial
FTP DOWNLOAD Wonderware Industrial SQL Server v9.0.000.0341 + crack + keygen + serial
FTP DOWNLOAD WORLEY LABS FPRIME V2.0 + crack + keygen + serial
FTP DOWNLOAD WORLEY LABSG2 V1.7 FOR LW + crack + keygen + serial
FTP DOWNLOAD W-Tools LWCAD v1.0b for LightWave Incl Keygen 2D3 BOUJOU THREE V3.0 + crack + keygen + serial
FTP DOWNLOAD Xara3D 5.02 + crack + keygen + serial
FTP DOWNLOAD X-HDL_v3.2.55 + crack + keygen + serial
FTP DOWNLOAD Xilinx EDK 8.1 (1 dvd) + crack + keygen + serial
FTP DOWNLOAD XILINX Embedded Development Kit and.XPS Ver7.1 + crack + keygen + serial
FTP DOWNLOAD XILINX Embedded Development Kit and.XPS Ver7.1 Incl Sp2 + crack + keygen + serial
FTP DOWNLOAD Xilinx ISE v7.1i + crack + keygen + serial
FTP DOWNLOAD Xilinx ISE v7.1i + crack + keygen + serial
FTP DOWNLOAD Xilinx ISE v7.1i ISO 3CD + crack + keygen + serial
FTP DOWNLOAD ZAXWERKS 3D FLAG AE V1.0.0 + crack + keygen + serial
FTP DOWNLOAD ZAXWERKS 3D FLAG PP V1.0.0 + crack + keygen + serial
FTP DOWNLOAD Zemax-EE 2005 + crack + keygen + serial
FTP DOWNLOAD Zsk Epcwin 2.01 + crack + keygen + serial
FTP DOWNLOAD Zsk Epcwin 2.37 + crack + keygen + serial
FTP DOWNLOAD ZSK Magic Stitch II Ver 1.20.8704 + crack + keygen + serial
If you are interested in or want to get more software list ,please go:
http://Soft4all.biz
http://Soft4all.biz
http://Soft4all.biz
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Keywords: buy warez cd; free download; free software; full warez cd;
no banners; cheap warez cd; free warez cd; full retail software cd;
full iso cd; download iso; download warez; freeware; free games;
upload crack; download crack; free ftp download; fast ftp server;
serials; serial number; free warez server; fast ftp download; low price;
download link; uk; england; ireland; iceland; italy; italia; switzerland;
canada; dutch; holland; norway; spain; germany; greece; india; australia;
germany; usa; canada; china; |
|
|
|
|