-
I know this is a far stretch and writing test cases is lots of work. But currently our only really test is running a FAUST CTF and that's not a satisfying situation.
For example, stuff like #34 is …
-
For the sake of development speed and rapid result explorations, there is a lot of redundant code in test cases. This needs to be fixed before it becomes "technical debt".
-
Are test cases included in the "work items" that the work item checklist extension can be used for?
-
- Add a separate class for test cases and have more expansive test cases
- The current tests just simulate running through a game with no regard to menus or game difficulty or anything like that. Th…
-
```
This was brought up in discussion about the Java implementation, there are
no tests for Unicode (very important for templates!)
The Python version's output types just relies on the input types, s…
-
set to use karma
-
**Reported by moshe on 24 Jul 2015 20:13 UTC**
airdecap, airdecloak, airlib, packetforce, and wesside all are almost completely untested. Add tests to these to `make check`
-
Go through and add more parameter sweeps to the unit tests.
-
In test/zhihu-test.py, some tests failed.
我的测试环境是windows 7, python 3.5.2.
```
# 获取关注问题的用户
for _, follower in zip(range(10), question.followers):
print(follower.name)
# 获取提问时间
ctime = question.c…
-
```
module type Stack = sig
type 'a t
val empty : 'a t
val isEmpty : 'a t -> bool
val head : 'a t -> 'a
val tail : 'a t -> 'a t
val cons : 'a -> 'a t -> 'a t
val join…