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

  Create a class called pizzaorder

Create a class called PizzaOrder that has the following members: toppingsOffered[] - a constant array of Strings representing the choice of low-price toppings, e.g., { "onions", "bell peppers", "olives", "pepperoni"... }. This member is public and..

  Program to display all products and ask user to select

Write a program which displays all products you have and ask user to select, for instance 1 for Optical Mouse. Show the price and ask user for quantity. Compute the amount.

  Develop a calendar and scheduling system

Develop a calendar and scheduling system, This assignment will contain two (2) Parts: Written Paper and Visual Basic Prototype. The Visual Basic Prototype is not included in the total page count but is included in the evaluation of your assignment...

  Write pseudocode to calculate the total price of the items

Create a line on the output receipt that identifies the item its price and the sales tax applicable to that item. Keep a running total of item prices and taxes.

  Automate the task of invigilator allocation

you are required to carry out the following to automate the task of invigilator allocation which may not be limited to one's own department.

  Program to display total sales salesmen

Display total sales per (6) salesmen. Place first and last names for (6) salesmen in array. When you display your final output, print salesman's last name only.

  Estimate the storage space for telephone book

Estimate the storage space (number of bytes) required for each of the following items: A telephone book with 10,000 entries consisting of names, addresses and phone numbers. Use your phone book to estimate the average length of an entry.

  Program that will allow a user to input list of their family

Problem Statement: Design a program that will allow a user to Input a list of their family members along with their age and state where they reside. Determine and output the average age of their family and output the names of anyone who lives in T..

  E for scientific notation

+, 0, decimal points, E for scientific notation +, 0, decimal points, E for scientific notation

  Write program to help students learn periods of geology time

You are taking a geology class, and the professor wants you to write a program to help students learn the periods of geologic time. The program should let the user enter a range of prehistoric dates (in millions of years), and then output the peri..

  Create-implement program which creates exception

Create and implement a program which creates an exception class called StringTooLongException, designed to be thrown when string is discovered that has too many characters in it.

  Program in c# that simulates the operation of the turtle

Write a program in C# that simulates the operation of the turtle and implements a computerized sketchpad. Write several turtle graphics programs that draw interesting shapes to use for testing your program.

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