1 23 24 package org.objectweb.fractal.adl.conform; 25 26 import org.objectweb.fractal.adl.ADLException; 27 import org.objectweb.fractal.adl.Loader; 28 import org.objectweb.fractal.adl.bindings.BindingLoader; 29 import org.objectweb.fractal.adl.xml.XMLLoader; 30 31 public class TestBindings extends Test { 32 33 public Loader l; 34 35 public TestBindings (final String name) { 36 super(name); 37 } 38 39 protected void setUp () { 40 BindingLoader bindLoader = new BindingLoader(); 41 bindLoader.clientLoader = new XMLLoader(false); 42 l = bindLoader; 43 } 44 45 public void test1 () throws ADLException { 46 assertNotNull(l.load("BIND1", null)); 47 } 48 49 public void test2 () { 50 try { 51 l.load("BIND2", null); 52 fail(); 53 } catch (ADLException e) { 54 } 55 } 56 57 public void test3 () { 58 try { 59 l.load("BIND3", null); 60 fail(); 61 } catch (ADLException e) { 62 } 63 } 64 65 public void test4 () { 66 try { 67 l.load("BIND4", null); 68 fail(); 69 } catch (ADLException e) { 70 } 71 } 72 73 public void test5 () { 74 try { 75 l.load("BIND5", null); 76 fail(); 77 } catch (ADLException e) { 78 } 79 } 80 81 public void test6 () { 82 try { 83 l.load("BIND6", null); 84 fail(); 85 } catch (ADLException e) { 86 } 87 } 88 89 public void test7 () { 90 try { 91 l.load("BIND7", null); 92 fail(); 93 } catch (ADLException e) { 94 } 95 } 96 97 public void test8 () { 98 try { 99 l.load("BIND8", null); 100 fail(); 101 } catch (ADLException e) { 102 } 103 } 104 } 105 | Popular Tags |