From: Juergen H. <jho...@us...> - 2006-04-21 00:13:58
|
Update of /cvsroot/springframework/spring/test/org/springframework/scheduling/timer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19629/test/org/springframework/scheduling/timer Modified Files: Tag: mbranch-1-2 TimerSupportTests.java Log Message: backported fixes and enhancements from 2.0 M4 (HEAD) Index: TimerSupportTests.java =================================================================== RCS file: /cvsroot/springframework/spring/test/org/springframework/scheduling/timer/TimerSupportTests.java,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** TimerSupportTests.java 13 Aug 2005 11:41:00 -0000 1.4 --- TimerSupportTests.java 21 Apr 2006 00:13:51 -0000 1.4.4.1 *************** *** 1,11 **** /* * Copyright 2002-2005 the original author or authors. ! * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at ! * * http://www.apache.org/licenses/LICENSE-2.0 ! * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, --- 1,11 ---- /* * Copyright 2002-2005 the original author or authors. ! * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at ! * * http://www.apache.org/licenses/LICENSE-2.0 ! * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, *************** *** 94,97 **** --- 94,103 ---- } + public void testPlainTimerFactoryBean() { + TimerFactoryBean tfb = new TimerFactoryBean(); + tfb.afterPropertiesSet(); + tfb.destroy(); + } + private static class TestTimerTask extends TimerTask { |