Click here to Skip to main content
15,891,431 members
Articles / Programming Languages / C#

Advanced Unit Testing, Part II - Core Implementation

Rate me:
Please Sign up or sign in to vote.
4.78/5 (34 votes)
22 Sep 200322 min read 210.4K   2.6K   198  
This article illustrates how a unit test automation framework is implemented and continues the case study developed in Part I.
using System;
using System.Collections;
using System.Globalization;

namespace CaseStudy
{
	public class PurchaseOrder
	{
		private string number;
		private Vendor vendor;
		private Invoice invoice;
		private PartsHashtable parts;
		private ChargesArray charges;

		public string Number
		{
			get {return number;}
			set {number=value;}
		}

		public Invoice Invoice
		{
			get {return invoice;}
			set
			{
				if (value.Number=="")
				{
					throw(new UnassignedInvoiceException());
				}
				if (value.Vendor.Name != vendor.Name)
				{
					throw(new DifferentVendorException());
				}
				invoice=value;
			}
		}

		public Vendor Vendor
		{
			get {return vendor;}
			set {vendor=value;}
		}

		public int PartCount
		{
			get {return parts.Count;}
		}

		public int ChargeCount
		{
			get {return charges.Count;}
		}

		public PurchaseOrder()
		{
			parts=new PartsHashtable();
			charges=new ChargesArray();
			number="";
			vendor=null;
			invoice=null;
		}

		public void Add(Part p, WorkOrder wo)
		{
			if (p.Number=="")
			{
				throw(new UnassignedPartException());
			}
			if (wo.Number=="")
			{
				throw(new UnassignedWorkOrderException());
			}
			if (!vendor.Find(p))
			{
				throw(new PartNotFromVendorException());
			}
			parts.Add(p, wo);
		}

		public void Add(Charge c)
		{
			charges.Add(c);
		}

		public void GetPart(int index, out Part p, out WorkOrder wo)
		{
			p=null;
			wo=null;

			foreach (DictionaryEntry item in parts)
			{
				if (--index < 0)
				{
					p=item.Key as Part;
					wo=item.Value as WorkOrder;
					break;
				}
			}
		}

		public void Close()
		{
			// Collect all the different work orders the parts go to.
			// For each work order, create a charge slip
			Hashtable woList=new Hashtable();
			int n=1;		// we always start with charge slip #000001
			string nStr="000000";
			double totalPartCost=0;
			foreach (DictionaryEntry item in parts)
			{
				if (!woList.Contains(item.Value))
				{
					ChargeSlip cs=new ChargeSlip();
					string s=n.ToString();
					cs.Number=nStr.Substring(0, 6-s.Length)+s; 
					woList[item.Value]=cs;

					// add the new charge slip to the work order
					(item.Value as WorkOrder).Add(cs);
				}
				
				// For each charge slip, add the part to
				// the charge slip.
				ChargeSlip cs2=woList[item.Value] as ChargeSlip;
				cs2.Add(item.Key as Part);
				totalPartCost+=(item.Key as Part).VendorCost;
			}

			// For each work order, get the total parts amount on
			// its corresponding charge slip.
			foreach (DictionaryEntry item in woList)
			{
				ChargeSlip cs=item.Value as ChargeSlip;
				double csPartCost=0;
				for (int i=0; i<cs.PartCount; i++)
				{
					csPartCost+=cs.Parts[i].VendorCost;
				}

				// The charge amount added to the charge slip =
				// csPartCost * chargeAmt / totalPartCost
				for (int i=0; i<charges.Count; i++)
				{
					Charge charge=new Charge();
					charge.Amount=csPartCost * charges[i].Amount / totalPartCost;
					charge.Description=charges[i].Description;
					cs.Add(charge);
				}
			}
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect Interacx
United States United States
Blog: https://marcclifton.wordpress.com/
Home Page: http://www.marcclifton.com
Research: http://www.higherorderprogramming.com/
GitHub: https://github.com/cliftonm

All my life I have been passionate about architecture / software design, as this is the cornerstone to a maintainable and extensible application. As such, I have enjoyed exploring some crazy ideas and discovering that they are not so crazy after all. I also love writing about my ideas and seeing the community response. As a consultant, I've enjoyed working in a wide range of industries such as aerospace, boatyard management, remote sensing, emergency services / data management, and casino operations. I've done a variety of pro-bono work non-profit organizations related to nature conservancy, drug recovery and women's health.

Comments and Discussions