Revision: 4513
Author: solomax666
Date: Fri Nov 4 11:00:30 2011
Log: - error in build file is fixed
- TestSmokeBasic is added
http://code.google.com/p/openmeetings/source/detail?r=4513
Added:
/trunk/singlewebapp/src/test/org/openmeetings/test/smoke
/trunk/singlewebapp/src/test/org/openmeetings/test/smoke/TestSmokeBasic.java
Modified:
/trunk/singlewebapp/build.xml
=======================================
--- /dev/null
+++
/trunk/singlewebapp/src/test/org/openmeetings/test/smoke/TestSmokeBasic.java
Fri Nov 4 11:00:30 2011
@@ -0,0 +1,18 @@
+package org.openmeetings.test.smoke;
+
+import static junit.framework.Assert.assertNotNull;
+
+import org.junit.Test;
+import org.openmeetings.app.data.user.Usermanagement;
+import org.openmeetings.test.AbstractOpenmeetingsSpringTest;
+import org.springframework.beans.factory.annotation.Autowired;
+
+public class TestSmokeBasic extends AbstractOpenmeetingsSpringTest {
+ @Autowired
+ private Usermanagement userManagement;
+
+ @Test
+ public void createErrorValueAndTest() {
+ assertNotNull(userManagement.getUserById(1L));
+ }
+}
=======================================
--- /trunk/singlewebapp/build.xml Fri Nov 4 10:42:37 2011
+++ /trunk/singlewebapp/build.xml Fri Nov 4 11:00:30 2011
@@ -410,9 +410,6 @@
<tstamp prefix="build">
<format property="TODAY" pattern="d-MMMM-yyyy" locale="en"/>
</tstamp>
- <manifestclasspath property="jar2.classpath"
jarfile="${project.distname}.jar">
- <classpath refid="compile.classpath"/>
- </manifestclasspath>
<jar
destfile="${dist.dir}/red5/webapps/${project.distname}/screen/rtpapplet.jar">
<fileset dir="${classes.dir}">
<include name="**/applet/**"/>
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.