blob: 47deaf1ea5e912ced6499b5745a3a2ce8359caef [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 VMware Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* VMware Inc. - initial contribution
*******************************************************************************/
package greenpages.tests;
//import static org.junit.Assert.assertEquals;
//import static org.junit.Assert.assertNotNull;
//import greenpages.Listing;
//import java.util.List;
//import org.springframework.beans.factory.annotation.Autowired;
import org.junit.Test;
public class GreenPagesSpringContextTests {
// @Autowired
// private GreenPagesController controller;
@Test
public void search() {
// List<Listing> results = this.controller.search("johnson");
// assertNotNull(results);
// assertEquals(1, results.size());
//
// Listing listing = results.get(0);
// assertNotNull(listing);
// assertEquals("Johnson", listing.getLastName());
}
@Test
public void entry() {
// Listing listing = this.controller.entry(1);
// assertNotNull(listing);
// assertEquals("Johnson", listing.getLastName());
}
}