source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/metier/test/TestServiceGraohe.java @ 68

Last change on this file since 68 was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 599 bytes
Line 
1package org.medias.eccad.metier.test;
2
3import java.io.File;
4import java.io.FileOutputStream;
5import java.io.IOException;
6import java.io.OutputStream;
7
8import org.medias.eccad.metier.statistique.ServiceGraphe;
9
10import junit.framework.TestCase;
11
12public class TestServiceGraohe extends TestCase {
13
14        public TestServiceGraohe(String arg0) {
15                super(arg0);
16        }
17
18        public void testGetGraphe() throws IOException {
19                ServiceGraphe serv_graphe = new ServiceGraphe();
20                File fichier = new File("/tmp/graphe.png");
21                OutputStream out = new FileOutputStream(fichier);
22                serv_graphe.getGraphe(out, null);
23               
24        }
25
26}
Note: See TracBrowser for help on using the repository browser.