01: /*
02: * Copyright 2005-2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: /*
17: * Created on Jul 15, 2005
18: */
19: package org.kuali.module.kra.service;
20:
21: import org.kuali.core.service.DocumentService;
22: import org.kuali.core.service.PersistenceService;
23: import org.kuali.kfs.context.KualiTestBase;
24: import org.kuali.test.ConfigureContext;
25:
26: /**
27: * This class...
28: */
29: @ConfigureContext
30: public class BudgetDocumentServiceTest extends KualiTestBase {
31:
32: private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger
33: .getLogger(BudgetDocumentServiceTest.class);
34:
35: private static final String UNKNOWN_USERNAME = "foo";
36: private static final String KNOWN_USERNAME = TestConstants.Data4.USER_ID1;
37: private static final String UNKNOWN_DOCUMENT_TYPENAME = "bar";
38: private static final String KNOWN_DOCUMENT_TYPENAME = "KualiBudgetDocument";
39: private static final Long UNKNOWN_DOCHEADERID = new Long(-1);
40:
41: private DocumentService documentService;
42: private PersistenceService persistenceService;
43:
44: public void testPlaceholder() {
45: assertTrue("Test classes need to have at least one test.", true);
46: }
47:
48: }
|