Skip to content

Commit

Permalink
add test for concatenate function
Browse files Browse the repository at this point in the history
  • Loading branch information
RevathiJambunathan committed Jul 18, 2023
1 parent 393c84e commit 8cec23e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/test_utility.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-

import numpy as np
import pytest

import amrex.space3d as amr

def test_concatenate():
pltname = amr.concatenate("plt",1000,5)
print("--test concatenate --")
print("plotfile name", pltname)
assert (pltname == "plt01000")

0 comments on commit 8cec23e

Please sign in to comment.