NeurodataWithoutBorders / matnwb

A Matlab interface for reading and writing NWB files
BSD 2-Clause "Simplified" License
48 stars 32 forks source link

Fix issue #583: test tutorial files across languages #587

Closed ehennestad closed 2 months ago

ehennestad commented 2 months ago

Fix #583

Motivation

Improve testing across matnwb and pynwb through reading nwb files produced by matnwb tutorials using pynwb and vice versa

How to test the behavior?

testSuiteMatnwbTutorials = matlab.unittest.TestSuite.fromClass(?tests.unit.TutorialTest)
testSuitePynwbTutorials = matlab.unittest.TestSuite.fromClass(?tests.unit.PynwbTutorialTest)

runner = matlab.unittest.TestRunner.withTextOutput()
results = runner.run([testSuiteMatnwbTutorials, testSuitePynwbTutorials])

Checklist