001package org.kuali.ole.docstore; 002 003import org.junit.Test; 004 005/** 006 * Created by IntelliJ IDEA. 007 * User: SM8451 008 * Date: 12/15/12 009 * Time: 2:38 PM 010 * To change this template use File | Settings | File Templates. 011 */ 012public class DocStoreConstants_UT { 013 014 @Test 015 public void testConstants() { 016 DocStoreConstants docStoreConstants = new DocStoreConstants(); 017 try { 018 boolean isVersioningEnabled = DocStoreConstants.isVersioningEnabled; 019 throw new OleException("To use in test cases"); 020 } catch (OleException e) { 021 e.getMessage(); 022 } 023 024 try { 025 boolean isVersioningEnabled = DocStoreConstants.isVersioningEnabled; 026 throw new OleException(); 027 } catch (OleException e) { 028 e.getMessage(); 029 } 030 031 032 } 033}