File tree Expand file tree Collapse file tree 3 files changed +2
-16
lines changed Expand file tree Collapse file tree 3 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,6 @@ module StdVector {
33 requires cplusplus
44}
55
6- module StdString {
7- header "std-string.h"
8- requires cplusplus
9- }
10-
116module StdMap {
127 header "std-map.h"
138 requires cplusplus
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33// REQUIRES: executable_test
44
55import StdlibUnittest
6- import StdString
76import CxxStdlib
87
98var StdStringTestSuite = TestSuite ( " StdString " )
109
1110StdStringTestSuite . test ( " init " ) {
12- let s = CxxString ( )
11+ let s = std . string ( )
1312 expectEqual ( s. size ( ) , 0 )
1413 expectTrue ( s. empty ( ) )
1514}
1615
1716StdStringTestSuite . test ( " push back " ) {
18- var s = CxxString ( )
17+ var s = std . string ( )
1918 s. push_back ( 42 )
2019 expectEqual ( s. size ( ) , 1 )
2120 expectFalse ( s. empty ( ) )
You can’t perform that action at this time.
0 commit comments