1/*
2 *  ticket-466.sli
3 *
4 *  This file is part of NEST.
5 *
6 *  Copyright (C) 2004 The NEST Initiative
7 *
8 *  NEST is free software: you can redistribute it and/or modify
9 *  it under the terms of the GNU General Public License as published by
10 *  the Free Software Foundation, either version 2 of the License, or
11 *  (at your option) any later version.
12 *
13 *  NEST is distributed in the hope that it will be useful,
14 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *  GNU General Public License for more details.
17 *
18 *  You should have received a copy of the GNU General Public License
19 *  along with NEST.  If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23
24/** @BeginDocumentation
25Name: testsuite::ticket-466.sli - test if mirollo_strogatz_ps can handle simultaneous inputs
26
27Synopsis: (ticket-466.sli) run -> dies if assertion fails
28
29Description:
30Feeds mirollo_strogatz_ps two simultaneous inputs, triggers assertion per r8864.
31
32Author: Plesser
33FirstVersion: 2010-10-05
34*/
35
36(unittest) run
37/unittest using
38
39modeldict /mirollo_strogatz_ps known not
40{
41  /skipped exit_test_gracefully
42} if
43
44M_ERROR setverbosity
45
46{
47  ResetKernel
48  /n /mirollo_strogatz_ps Create def
49  /sg /spike_generator << /precise_times false
50                          /spike_times [ 0.1 0.1 ]
51		       >> Create def
52  sg n Connect
53  1.5 Simulate
54} pass_or_die
55
56endusing