Skip to content

Commit

Permalink
is-13: cover senders and receivers
Browse files Browse the repository at this point in the history
  • Loading branch information
pkeroulas committed Mar 5, 2024
1 parent 9c3f078 commit 35a2c78
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion nmostesting/suites/IS1301Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,4 +230,26 @@ def test_02_03(self, test):
"""Annotation test: devices/../tags (reset to default, set 5 tags, set >5 tags, check IS04+version)"""
return self.do_test(test, "devices", "tags")

# TODO add receivers + senders
def test_03_01(self, test):
""" Annotation test: senders/../label (reset to default, set 64-byte value, set >64-byte, check IS04+version)"""
return self.do_test(test, "senders", "label")

def test_03_02(self, test):
"""Annotation test: senders/../description (reset to default, set 5 tags, set >5 tags, check IS04+version)"""
return self.do_test(test, "senders", "description")

def test_03_03(self, test):
"""Annotation test: sender/sevices/../tags (reset to default, set 5 tags, set >5 tags, check IS04+version)"""
return self.do_test(test, "senders", "tags")

def test_04_01(self, test):
""" Annotation test: receivers/../label (reset to default, set 64-byte value, set >64-byte, check IS04+version)"""
return self.do_test(test, "receivers", "label")

def test_04_02(self, test):
"""Annotation test: receivers/../description (reset to default, set 5 tags, set >5 tags, check IS04+version)"""
return self.do_test(test, "receivers", "description")

def test_04_03(self, test):
"""Annotation test: receivers/sevices/../tags (reset to default, set 5 tags, set >5 tags, check IS04+version)"""
return self.do_test(test, "receivers", "tags")

0 comments on commit 35a2c78

Please sign in to comment.