Resolve "System tests iteration 1"
1 unresolved thread
1 unresolved thread
Closes #62 (closed)
Added test cases for creating and simulating the simple filter used in the first lab for TSTE87. The SFG used in the labs gives output from the SFG as an array, although, our program seems to give these outputs values incrementally. I expect that we will need to change this in the future to be able to plot the output values.
Also refactorized some test cases.
Edited by Kevin Scott
Merge request reports
Activity
changed milestone to %Period 2 Kanban
added Needs testing + 1 deleted label
added 4 commits
-
6a162f57...37d6eb81 - 3 commits from branch
develop
- 7e1673f3 - merge
-
6a162f57...37d6eb81 - 3 commits from branch
added 3 commits
-
6bc1aa27...a1eeb37b - 2 commits from branch
develop
- 0c9a8737 - Merge branch 'develop' of gitlab.liu.se:PUM_TDDD96/B-ASIC into 62-system-tests-iteration-1
-
6bc1aa27...a1eeb37b - 2 commits from branch
- Resolved by Kevin Scott
47 inp_port.remove_signal(s1) 39 input_port.remove_signal(s1) 48 40 49 assert inp_port.connected_source is None 50 assert inp_port.signals == [] 51 assert out_port.signals == [s1] 52 assert s1.source is out_port 41 assert input_port.connected_source is None 42 assert input_port.signals == [] 43 assert output_port.signals == [s1] 44 assert s1.source is output_port 53 45 assert s1.destination is None 54 46 55 def test_connect_used_port_to_new_port(inp_port, out_port, out_port2): 47 def test_connect_used_port_to_new_port(input_port, output_port, output_port2): 56 48 """Does connecting multiple ports to an inputport throw error?""" changed this line in version 6 of the diff
mentioned in commit 60a87ac1
Please register or sign in to reply