summaryrefslogtreecommitdiff
path: root/modules/string/tests/unit_tests/isalphanum.dia.ref
blob: 279dc6331720f9bf0845a7361ff23da8c0298ada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2007-2008 - INRIA
//
//  This file is distributed under the same license as the Scilab package.
// =============================================================================
// <-- CLI SHELL MODE -->
//===============================
// unit tests isalphanum
//===============================
TXT = 'A1,B2,C3';
//===============================
if isalphanum(TXT) <> [ %T %T %F %T %T %F %T %T] then bugmes();quit;end
//===============================
if isalphanum('') <> [] then bugmes();quit;end
//===============================
if ~isalphanum('a') then bugmes();quit;end
if ~isalphanum('b') then bugmes();quit;end
if ~isalphanum('c') then bugmes();quit;end
if ~isalphanum('d') then bugmes();quit;end
if ~isalphanum('e') then bugmes();quit;end
if ~isalphanum('f') then bugmes();quit;end
if ~isalphanum('g') then bugmes();quit;end
if ~isalphanum('h') then bugmes();quit;end
if ~isalphanum('i') then bugmes();quit;end
if ~isalphanum('j') then bugmes();quit;end
if ~isalphanum('k') then bugmes();quit;end
if ~isalphanum('l') then bugmes();quit;end
if ~isalphanum('m') then bugmes();quit;end
if ~isalphanum('n') then bugmes();quit;end
if ~isalphanum('o') then bugmes();quit;end
if ~isalphanum('p') then bugmes();quit;end
if ~isalphanum('q') then bugmes();quit;end
if ~isalphanum('r') then bugmes();quit;end
if ~isalphanum('s') then bugmes();quit;end
if ~isalphanum('t') then bugmes();quit;end
if ~isalphanum('u') then bugmes();quit;end
if ~isalphanum('v') then bugmes();quit;end
if ~isalphanum('x') then bugmes();quit;end
if ~isalphanum('y') then bugmes();quit;end
if ~isalphanum('z') then bugmes();quit;end
if ~isalphanum('A') then bugmes();quit;end
if ~isalphanum('B') then bugmes();quit;end
if ~isalphanum('C') then bugmes();quit;end
if ~isalphanum('D') then bugmes();quit;end
if ~isalphanum('E') then bugmes();quit;end
if ~isalphanum('F') then bugmes();quit;end
if ~isalphanum('G') then bugmes();quit;end
if ~isalphanum('H') then bugmes();quit;end
if ~isalphanum('I') then bugmes();quit;end
if ~isalphanum('J') then bugmes();quit;end
if ~isalphanum('K') then bugmes();quit;end
if ~isalphanum('L') then bugmes();quit;end
if ~isalphanum('M') then bugmes();quit;end
if ~isalphanum('O') then bugmes();quit;end
if ~isalphanum('P') then bugmes();quit;end
if ~isalphanum('Q') then bugmes();quit;end
if ~isalphanum('R') then bugmes();quit;end
if ~isalphanum('S') then bugmes();quit;end
if ~isalphanum('T') then bugmes();quit;end
if ~isalphanum('U') then bugmes();quit;end
if ~isalphanum('V') then bugmes();quit;end
if ~isalphanum('X') then bugmes();quit;end
if ~isalphanum('Y') then bugmes();quit;end
if ~isalphanum('Z') then bugmes();quit;end
if ~isalphanum('1') then bugmes();quit;end
if ~isalphanum('2') then bugmes();quit;end
if ~isalphanum('3') then bugmes();quit;end
if ~isalphanum('4') then bugmes();quit;end
if ~isalphanum('5') then bugmes();quit;end
if ~isalphanum('6') then bugmes();quit;end
if ~isalphanum('7') then bugmes();quit;end
if ~isalphanum('8') then bugmes();quit;end
if ~isalphanum('9') then bugmes();quit;end
if isalphanum('!') then bugmes();quit;end
if isalphanum('#') then bugmes();quit;end
if isalphanum('$') then bugmes();quit;end
if isalphanum('%') then bugmes();quit;end
if isalphanum('&') then bugmes();quit;end
if isalphanum('(') then bugmes();quit;end
if isalphanum(')') then bugmes();quit;end
if isalphanum('*') then bugmes();quit;end
if isalphanum('+') then bugmes();quit;end
if isalphanum(',') then bugmes();quit;end
if isalphanum('-') then bugmes();quit;end
if isalphanum('.') then bugmes();quit;end
if isalphanum('/') then bugmes();quit;end
if isalphanum(':') then bugmes();quit;end
if isalphanum(';') then bugmes();quit;end
if isalphanum('<') then bugmes();quit;end
if isalphanum('=') then bugmes();quit;end
if isalphanum('>') then bugmes();quit;end
if isalphanum('@') then bugmes();quit;end
if isalphanum('[') then bugmes();quit;end
if isalphanum('\') then bugmes();quit;end
if isalphanum(']') then bugmes();quit;end
if isalphanum('^') then bugmes();quit;end
if isalphanum('_') then bugmes();quit;end
if isalphanum('`') then bugmes();quit;end
if isalphanum('{') then bugmes();quit;end
if isalphanum('|') then bugmes();quit;end
if isalphanum('}') then bugmes();quit;end
if isalphanum('~') then bugmes();quit;end