1   /*
2    * $Id: ObjectByteArrayTransformersWithStringsTestCase.java 7963 2007-08-21 08:53:15Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.transformers.simple;
12  
13  import org.mule.tck.AbstractTransformerTestCase;
14  import org.mule.umo.transformer.UMOTransformer;
15  
16  public class ObjectByteArrayTransformersWithStringsTestCase extends AbstractTransformerTestCase
17  {
18      private String testObject = "test";
19  
20      public UMOTransformer getTransformer() throws Exception
21      {
22          return new ObjectToByteArray();
23      }
24  
25      public UMOTransformer getRoundTripTransformer() throws Exception
26      {
27          return new ByteArrayToObject();
28      }
29  
30      public Object getTestData()
31      {
32          return testObject;
33      }
34  
35      public Object getResultData()
36      {
37          return testObject.getBytes();
38      }
39  }