[app] Display 'transaction.value' after completion (bug #25)
[abstract.git] / app / aaAbstractTest.cpp
blobd96aa5d5d638892d5fc202c41596055d13b35a03
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
3 /*
4 * Copyright (C) 2007 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #include <abstract/abstract-config.h>
24 #include "nsStringAPI.h"
25 #include "nsEmbedString.h"
27 /* Unfrozen interfaces */
28 #include "unstable/nsIStringEnumerator.h"
29 #include <abstract/cxxunit/nsTestUtils.h>
30 #include <abstract/cxxunit/nsITest.h>
31 #include <abstract/cxxunit/nsITestRunner.h>
33 /* Project includes */
34 #include "aaAbstractTest.h"
36 static const char* subtests[] =
38 "@aasii.org/cxxunit/unit;1"
39 ,"@aasii.org/base/unit;1"
40 ,"@aasii.org/storage/unit;1"
41 ,"@aasii.org/report/unit;1"
42 ,"@aasii.org/view/unit;1"
43 ,"@aasii.org/abstract/test/vc-base;1"
44 ,"@aasii.org/abstract/test/vc-accounts;1"
46 #define subtestCount (sizeof(subtests) / sizeof(char*))
48 aaAbstractTest::aaAbstractTest()
50 mSubtest = 0;
53 aaAbstractTest::~aaAbstractTest()
57 NS_IMPL_ISUPPORTS2(aaAbstractTest,
58 nsITest,
59 nsIUTF8StringEnumerator);
61 NS_IMETHODIMP
62 aaAbstractTest::Test(nsITestRunner *aTestRunner)
64 NS_TEST_BEGIN(aTestRunner);
65 return NS_OK;
68 NS_IMETHODIMP
69 aaAbstractTest::HasMore(PRBool *aHasMore)
71 NS_ENSURE_ARG_POINTER(aHasMore);
72 *aHasMore = (mSubtest < subtestCount);
73 return NS_OK;
76 NS_IMETHODIMP
77 aaAbstractTest::GetNext(nsACString &aContractID)
79 NS_ENSURE_TRUE(mSubtest < subtestCount, NS_ERROR_FAILURE);
80 aContractID.Assign( subtests[mSubtest++] );
81 return NS_OK;