示例#1
0
// BEGIN KAWIGIEDIT TESTING
// Generated by KawigiEdit 2.1.4 (beta) modified by pivanof
bool KawigiEdit_RunTest(int testNum, int p0, bool hasAnswer, int p1) {
	cout << "Test " << testNum << ": [" << p0;
	cout << "]" << endl;
	TaxTable *obj;
	int answer;
	obj = new TaxTable();
	clock_t startTime = clock();
	answer = obj->income(p0);
	clock_t endTime = clock();
	delete obj;
	bool res;
	res = true;
	cout << "Time: " << double(endTime - startTime) / CLOCKS_PER_SEC << " seconds" << endl;
	if (hasAnswer) {
		cout << "Desired answer:" << endl;
		cout << "\t" << p1 << endl;
	}
	cout << "Your answer:" << endl;
	cout << "\t" << answer << endl;
	if (hasAnswer) {
		res = answer == p1;
	}
	if (!res) {
		cout << "DOESN'T MATCH!!!!" << endl;
	} else if (double(endTime - startTime) / CLOCKS_PER_SEC >= 2) {
		cout << "FAIL the timeout" << endl;
		res = false;
	} else if (hasAnswer) {
		cout << "Match :-)" << endl;
	} else {
		cout << "OK, but is it right?" << endl;
	}
	cout << "" << endl;
	return res;
}
示例#2
0
int test56() {
    int taxAmount = 1000000;
    TaxTable* pObj = new TaxTable();
    clock_t start = clock();
    int result = pObj->income(taxAmount);
    clock_t end = clock();
    delete pObj;
    int expected = 2929591;
    if(result == expected) {
        cout << "Test Case 56: Passed! Time: " << static_cast<double>(end-start)/CLOCKS_PER_SEC << " seconds" << endl;
        return 0;
    } else {
        cout << "Test Case 56: Failed! Time: " << static_cast<double>(end-start)/CLOCKS_PER_SEC << " seconds" << endl;
        return 1;
    }
}
示例#3
0
文件: main.cpp 项目: GrowthRing/Demos
int main()
{
	TaxTable *tax = TaxTable::getTaxTable();
	map<string, float> &taxlist = tax->getTaxList();
	vector<string> vs;
	string s;
	while (getline(cin, s)) {
		vs.push_back(s);
	}

	vector<InputData> iputs;
	for (int i = 0; i < vs.size(); i++)
	{
		InputData idatas;
		int l = vs[i].find_first_of(" ");
		int r = vs[i].find_last_of(" ");
		string ns = vs[i].substr(0, l);
		idatas.describe = vs[i].substr(l + 1, r - l - 1);
		string fs = vs[i].substr(r+1, vs[i].length()-1-r);
		idatas.n = atoi(ns.c_str());
		idatas.price = atof(fs.c_str());
		iputs.push_back(idatas);
	}

	Barkets barks;
	NonTaxProduct *book = new NonTaxProduct();
	book->setName("book");
	book->setPrice(12.49);

	BaseTaxOnly *musicCD = new BaseTaxOnly();
	musicCD->setName("musicCD");
	musicCD->setPrice(14.99);

	NonTaxProduct *chocolateBar = new NonTaxProduct();
	chocolateBar->setName("chocolateBar");
	chocolateBar->setPrice(0.85);

	barks.computePrice(book, 1, taxlist);
	barks.computePrice(musicCD, 1, taxlist);
	barks.computePrice(chocolateBar, 1, taxlist);

	barks.outPutBarket(iputs);
	system("pause");
	return 0;
}