/v3.2/nimbits-tds/test/TestCommonIdentifier.java
http://nimbits-server.googlecode.com/ · Java · 35 lines · 12 code · 5 blank · 18 comment · 0 complexity · 3c91b18476816ff26080ed02f74a3ae8 MD5 · raw file
- /*
- * Copyright (c) 2010 Tonic Solutions LLC.
- *
- * http://www.nimbits.com
- *
- *
- * Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.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.gnu.org/licenses/gpl.html
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- */
- import com.nimbits.client.model.common.CommonFactoryLocator;
- import com.nimbits.client.model.email.EmailAddress;
- import org.junit.Assert;
- import org.junit.Test;
- /**
- * Created by bsautner
- * User: benjamin
- * Date: 8/7/11
- * Time: 6:22 PM
- */
- public class TestCommonIdentifier {
- @Test
- public void testToString() {
- EmailAddress e = CommonFactoryLocator.getInstance().createEmailAddress("b@b.com");
- Assert.assertEquals(e.getValue(), e.toString());
- Assert.assertEquals(e.getValue(), "" + e);
- }
- }