Implement and test the human resource information system

Assignment Help Programming Languages
Reference no: EM131220480

The Brief

Your small development team of (ideally) three people has been asked to implement and test the Human Resource Information System desktop application. Your software product will be a database- backed desktop application with a Windows Presentation Foundation (WPF) graphical front end, implemented in C#. As part of your development efforts you will prepare and apply a small collection of test cases to verify that the completed application meets some of the key requirements agreed with the client.

Your progress will be assessed, and feedback given, during your Week 11 tutorial. Additional details of this checkpoint will be provided after the mid-semester break.

Development approach

Because the final application requires knowledge of the C# language, how to communicate with a database using C# (and LINQ) and how to design and construct GUIs using WPF, and because these topics are to be covered over a period of some weeks, we recommend that you take a prototyping approach to the development of this application. This will allow you and your team to make useful progress on parts of the system even before you have obtained the skills required to implement the whole system. (Note that this will likely entail some manual copying of source files between projects as you migrate from a console application to a WPF application.) We suggest the following implementation stages (you may of course adopt a different development path if you find it suits your team better):

 

Stage

Timeframe (semester week)

 

Application type & functionality

 

Notes

1

8-9

Console application with entity (data) classes, partially-implemented control classes and at least one database adapter class.

One or more driver classes containing Main() that can test features such as filtering of the staff or unit lists.

1.  May have a GUI, but this should be no more than necessary to exercise/test implemented functionality (should be able to throw this GUI away later).

2.  Database adapter will need to return artificial data.

2

9-10

As above but using live data, which will substantially ease the burden on you to create artificial test data.

Draft test cases that are complete in all details apart from test methods (which will likely still be high-level until the GUI is built).

(1) as above

3

11-13

WPF application with custom controls for different views. Control classes updated to know about GUI components and event handlers connected.

Test cases completed and applied to your application.

Transition will be easiest by creating a new WPF Application project and importing the pre-existing class files into it.

OO Packages and C# Namespaces
As C# applications have a top-level namespace, which was not part of the OO Design, we recommend that each package in the OO Design becomes a nested namespace within your application's top-level namespace (which should be HRIS). Note that the namespace and project name do not have to be the same, even though Visual Studio will initially make them the same.

The School Database (aka HRIS Database)
The case study MySQL database is available via the following settings:

Database: kit206 User Id: kit206 Password: kit206
Data Source: alacritas.cis.utas.edu.au

You can also browse the data via phpMyAdmin (append that to the end of the server name). As the database is shared it will not appear in your own list of databases on alacritas if you log in under your own user name. An EER Diagram for the database plus some details on enumerated value columns accompanies this document.

Data quality
The database is currently live and contains fictitious data. The data are consistent in that foreign key relationships are all valid, although initially there will not be much information in the database. More entries, or more realistic entries, may be added later in semester, but this is not guaranteed.

The Testing Report
Concurrently with development of the application you will create a test plan containing four test cases to verify the following subset of requirements in the HRIS RTM:
- SWC 1
- UC8_User_views_StaffList
- UC16_User_views_StaffDetails
- UC24_User_selects_Unit

Each test case will be based on the Test Report Template, which is available on MyLO. Each test case that is based on a use case should include at least two methods by which the requirement will be tested. NTH features of use cases should also be tested and so will provide additional methods, even if they were not implemented; the quality of the test case will be assessed, not the one line outcome of whether it passes or not. The test cases for the SWC will likely need only one, brief method in order to be tested.

Ensure that all instructional entries (Repeat the following box..., <Extract the text..., Repeat Method and Outcome...) and unused method-outcome rows are removed from your submitted test plan. The document should include a title and your team name on the first page; the first test case can start immediately below that.

When the application is complete, apply the test plan to it and record the outcome for each method. Remember that if the outcome is ‘fail' then an explanation of when (which step) or how must also be recorded.

Sources of information for compiling the testing plan

Follow the procedures described in Module 5 Use case-Based Testing to derive the test cases for the indicated SWC and SW entries. The RTM will be your primary resource for identifying the criteria for each test case. The original requirements document may also provide some useful information. The structured scenarios you prepared during Assignment 1, in conjunction with the specific application being tested, will provide the basic structure of the testing methods in each test case, since they describe the user's actions in each use case.

Assessment

The assessment criteria for the final submission are available in an accompanying document, in Excel and PDF formats.

Your progress will also be assessed during your week 11 tutorial, which will contribute up to 5% to your final grade in the unit. The assessment criteria for this check will be released after the mid- semester break.

Attachment:- Test Report Template.rar

Reference no: EM131220480

Questions Cloud

Audit of the financial statements of an entity : A CPA has conducted an audit of the financial statements of an entity that received federal financial assistance. The CPA identified one major federal program and four nonmajor federal programs. The CPA’s responsibility related to the Schedule of Exp..
Create a traditional flipbook animation : Create a traditional fl ipbook animation. With a note pad bound at the top, draw a series of contour line sketches on the bottom third of each page.
Compute mydecos pe ratio each year from 2009 to 2013 : Compute Mydeco's PE ratio each year from 2009 to 2013. In which year was it the highest? - What was Mydeco's Enterprise Value to EBITDA ratio each year? In which year was it the highest?
Uses the high-low method to analyze cost behavior : Northlake, Inc., uses the high-low method to analyze cost behavior. The company observed that at 20,000 machine hours of activity, total maintenance costs averaged $10.50 per hour. When activity jumped to 24,000 machine hours, which was still within ..
Implement and test the human resource information system : Assignment C# Application & Test Report - As part of your development efforts you will prepare and apply a small collection of test cases to verify that the completed application meets some of the key requirements agreed with the client - Your smal..
Uses the high-low method to analyze costs : Swanson and Associates presently leases a copy machine under an agreement that calls for a fixed fee each month and a charge for each copy made. Swanson made 7,000 copies and paid a total of $360 in March; in May, the firm paid $280 for 5,000 copies...
Identify a perceptual map : Prepare a perceptual map for your chosen product/brand and using a minimum of seven competitors, rank each product/brand on the two variables based on how they are positioned in the consumers' minds.
Create contour sketches of both objects by tracing : Tracing paper may be useful for some parts of the drawing. This process is commonly referred to as morphing.
Seeking damages for breach of contract to sell tennis raquet : John sues ivan in a state court, seeking damages for breach of contract to sell a tennis raquet. the trial court finds for ivan. john announces that he will appeal 'all the way to the supreme court of the united states, if necessary, to change the de..

Reviews

len1220480

9/26/2016 5:35:17 AM

Database interaction and use of LINQ (15%) Database queries are tailored to suit particular tasks and do not load more data than they need; LINQ used to correctly to implement suitable collection processing tasks Use of WPF (15%) Appropriate choice of GUI controls; suitable layout elements that allow application to be resized yet remain usable; implementation makes use of data binding and maybe a data template; at least one user control implemented Test Report Single PDF that is clear, free of errors & (15%) contains only required information. Each SW test case has more than one method; methods are sufficiently detailed (no missing steps); white box and black box tests used appropriately; any SWC content included in use SW test case's criteria is relevant to that use case and not an independent SWC. All test outcomes are recorded.

len1220480

9/26/2016 5:34:32 AM

Assignment 2 - C# Application and Test Report Assessment Criteria Use of SVN (5%) Submitted assignment is present in team repository; repository indicates project activity beginning by Week 9 - Functionality (20%) In addition to DN requirements: all base (non-NTH) requirements implemented, including the list of units the staff member is involved in teaching; both staff name and unit code/title filtering ; ability to go from Staff Detail to Unit Timetable view and back or Activity Grid implemented; in UC16, when availability is 'teaching' unit and room are also shown. HD+ (100%) level requires all of the above to be functioning to a reasonable standard - OO implementation (15%) Each class responsible for one part of the system; namespaces reflect packages in OO design; private data cannot be written arbitrarily, except in 'data-only' classes; appropriate use of abstract classes and static methods; one class per source file; uses enums or constants appropriately. MVC (15%) Clean separation between model, view and controller classes

Write a Review

Programming Languages Questions & Answers

  Write a haskell program to calculates a balanced partition

Write a program in Haskell which calculates a balanced partition of N items where each item has a value between 0 and K such that the difference b/w the sum of the values of first partition,

  Create an application to run in the amazon ec2 service

In this project you will create an application to run in the Amazon EC2 service and you will also create a client that can run on local machine and access your application.

  Explain the process to develop a web page locally

Explain the process to develop a Web page locally

  Write functions

These 14 questions covers java class, Array, link list , generic class.

  Programming assignment

If the user wants to read the input from a file, then the output will also go into a different file . If the user wants to read the input interactively, then the output will go to the screen .

  Write a prolog program using swi proglog

Write a Prolog program using swi proglog

  Create a custom application using eclipse

Create a custom Application Using Eclipse Android Development

  Create a application using the mvc architecture

create a application using the MVC architecture. No scripting elements are allowed in JSP pages.

  Develops bespoke solutions for the rubber industry

Develops bespoke solutions for the rubber industry

  Design a program that models the worms behavior

Design a program that models the worm's behavior.

  Writing a class

Build a class for a type called Fraction

  Design a program that assigns seats on an airplane

Write a program that allows an instructor to keep a grade book and also design and implement a program that assigns seats on an airplane.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd