Skip to content

Commit

Permalink
MONDRIAN: Fixed Java Doc/Header/Footer Issues
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 9490]
  • Loading branch information
thiyagu committed Jun 21, 2007
1 parent 08aaa05 commit 23077d0
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 10 deletions.
11 changes: 9 additions & 2 deletions src/main/mondrian/olap/CellProperty.java
Expand Up @@ -8,13 +8,18 @@
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
// Shishir, 08 May, 2007
//
*/
package mondrian.olap;

/**
* Represents Cell Property
* Represents Cell Property.
*
* @author Shishir
* @version $Id$
* @since 08 May, 2007
*/

public class CellProperty extends QueryPart {
private String name;

Expand All @@ -35,3 +40,5 @@ public String toString() {
return name;
}
}

// End CellProperty.java
20 changes: 15 additions & 5 deletions testsrc/main/mondrian/calc/impl/ConstantCalcTest.java
@@ -1,15 +1,23 @@
/*
// This software is subject to the terms of the Common Public License
// Agreement, available at the following URL:
// http://www.opensource.org/licenses/cpl.html.
// Copyright (C) 2002-2007 Julian Hyde and others
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
*/

package mondrian.calc.impl;

import junit.framework.TestCase;
import mondrian.olap.type.NullType;
import mondrian.olap.fun.FunUtil;

/**
* Created by IntelliJ IDEA.
* User: Brightondev
* Date: Apr 2, 2007
* Time: 1:31:07 PM
* To change this template use File | Settings | File Templates.
* Test for <code>ConstantCalc</code>
* @author Matt
* @version $Id$
*/
public class ConstantCalcTest extends TestCase {
public void testNullEvaluatesToConstantDoubleNull() {
Expand All @@ -22,3 +30,5 @@ public void testNullEvaluatesToConstantIntegerNull() {
assertEquals(FunUtil.IntegerNull,constantCalc.evaluateInteger(null));
}
}

// End ConstantCalcTest.java
10 changes: 9 additions & 1 deletion testsrc/main/mondrian/olap/CellPropertyTest.java
Expand Up @@ -8,13 +8,19 @@
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
//
// Shishir, 08 May, 2007
*/

package mondrian.olap;

import junit.framework.TestCase;

/**
* Test for <code>Cell Property<code>
*
* @author Shishir
* @version $Id$
* @since 08 May, 2007
*/

public class CellPropertyTest extends TestCase {
private CellProperty cellProperty;
Expand All @@ -37,3 +43,5 @@ public void testIsNameEqualsParameterShouldNotBeQuoted() {
}

}

// End CellPropertyTest.java
2 changes: 2 additions & 0 deletions testsrc/main/mondrian/rolap/FastBatchingCellReaderTest.java
Expand Up @@ -599,3 +599,5 @@ public void load(

}
}

// End FastBatchingCellReaderTest.java
4 changes: 3 additions & 1 deletion testsrc/main/mondrian/rolap/GroupingSetQueryTest.java
Expand Up @@ -319,4 +319,6 @@ public void testGroupingSetForMultipleColumnConstraint() {
assertRequestSql(new CellRequest[]{request3, request1, request2},
patternsWithoutGS, cubeNameSales2);
}
}
}

// End GroupingSetQueryTest.java
2 changes: 2 additions & 0 deletions testsrc/main/mondrian/rolap/sql/SqlQueryTest.java
Expand Up @@ -159,3 +159,5 @@ public void testToStringForMultipleGroupingSetsSql() {
}
}
}

// End SqlQueryTest.java
6 changes: 5 additions & 1 deletion testsrc/main/mondrian/test/ConcurrentMdxTest.java
Expand Up @@ -13,7 +13,10 @@
import mondrian.olap.MondrianProperties;
/**
* Runs specified set of MDX queries concurrently.
* This Class is not added to the Main test suite.
* This Class is not added to the Main test suite.
* Purpose of this test is to simulate Concurrent access to Aggregation and data
* load. Simulation will be more effective if we run this single test again and
* again with a fresh connection.
*
* @author Thiyagu,Ajit
* @version $Id$
Expand Down Expand Up @@ -1262,3 +1265,4 @@ protected void setUp() throws Exception {
props = MondrianProperties.instance();
}
}
// End ConcurrentMdxTest.java
Expand Up @@ -206,3 +206,5 @@ public List flushCatalogList() {
}
}
}

// End DynamicDatasourceXmlaServletTest.java

0 comments on commit 23077d0

Please sign in to comment.