Commit 6c3849f7 authored by Donald H. (Donnie) Pinkston, III's avatar Donald H. (Donnie) Pinkston, III
Browse files

Enable heap-file tests for Lab 1

A number of correctness tests are contained in the TestHeapTableFormat
class.  The tests are activated in the Maven test configuration.
parent 5d45d73b
No related merge requests found
Showing with 21 additions and 2 deletions
+21 -2
......@@ -144,7 +144,7 @@
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
-->
<groups>framework,parser</groups>
<groups>framework,parser,hw1</groups>
</configuration>
</plugin>
......@@ -196,18 +196,37 @@
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>default-check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
<!--
Extra config to ensure we get a report after testing,
even if the site isn't generated.
-->
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<!-- Sets the output directory for the code coverage report. -->
<outputDirectory>${project.build.directory}/coverage-reports</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
......
......@@ -15,7 +15,7 @@ import edu.caltech.test.nanodb.storage.TableFormatTestCase;
* performing various SQL operations against it. It doesn't test the
* implementation class directly.
*/
@Test
@Test(groups={"hw1"})
public class TestHeapTableFormat extends TableFormatTestCase {
/**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment