From e3eac686b933563fc6e05be539c6c954e4401b63 Mon Sep 17 00:00:00 2001 From: Sarah Gilmore Date: Fri, 24 May 2024 11:29:18 -0400 Subject: [PATCH] Add boilerplate test class for roundtripping RecordBatches via C Data Interface format --- matlab/test/arrow/c/tRoundTripRecordBatch.m | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 matlab/test/arrow/c/tRoundTripRecordBatch.m diff --git a/matlab/test/arrow/c/tRoundTripRecordBatch.m b/matlab/test/arrow/c/tRoundTripRecordBatch.m new file mode 100644 index 0000000000000..15a0875ea1e20 --- /dev/null +++ b/matlab/test/arrow/c/tRoundTripRecordBatch.m @@ -0,0 +1,28 @@ +%TROUNDTRIPRECORDBATCH Tests for roundtripping RecordBatches using +% the C Data Interface format. + +% Licensed to the Apache Software Foundation (ASF) under one or more +% contributor license agreements. See the NOTICE file distributed with +% this work for additional information regarding copyright ownership. +% The ASF licenses this file to you under the Apache License, Version +% 2.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.apache.org/licenses/LICENSE-2.0 +% +% 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. +classdef tRoundTripRecordBatch < matlab.unittest.TestCase + + methods (Test) + % Test methods + + function unimplementedTest(testCase) + testCase.verifyFail("Unimplemented test"); + end + end + +end \ No newline at end of file