📄 yeartest.java
字号:
/* * Copyright (c) 2003-2006, Simon Brown * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * - Neither the name of Pebble nor the names of its contributors may * be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */package net.sourceforge.pebble.domain;/** * Tests for the Year class. * * @author Simon Brown */public class YearTest extends SingleBlogTestCase { private Year year; protected void setUp() throws Exception { super.setUp(); year = new Year(blog, 2003); } /** * Tests that the root blog is setup correctly. */ public void testGetRootBlog() { assertEquals(blog, year.getBlog()); } /** * Tests the getter for the year property. */ public void testGetYear() { assertEquals(2003, year.getYear()); } /** * Tests that we can get the first month containing blog entries. */ public void testFirstMonth() { assertEquals(1, year.getBlogForFirstMonth().getMonth()); } /** * Tests that we can get a specific month from a year. */ public void testGetMonth() { Month month = year.getBlogForMonth(1); assertEquals(year, month.getYear()); assertEquals(1, month.getMonth()); month = year.getBlogForMonth(12); assertEquals(year, month.getYear()); assertEquals(12, month.getMonth()); try { month = year.getBlogForMonth(-1); fail(); } catch (IllegalArgumentException iae) { } try { month = year.getBlogForMonth(0); fail(); } catch (IllegalArgumentException iae) { } try { month = year.getBlogForMonth(13); fail(); } catch (IllegalArgumentException iae) { } } /** * Tests that toString() works. */ public void testToString() { assertEquals("2003", year.toString()); } /** * Tests the compareTo method. */ public void testCompareTo() { Year y1 = new Year(blog, 2004); Year y2 = new Year(blog, 2005); assertTrue(y1.compareTo(y1) == 0); assertTrue(y1.compareTo(y2) < 0); assertTrue(y1.compareTo(y2) < 0); assertTrue(y2.compareTo(y1) > 0); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -