github.com/tursom/GoCollections@v0.3.10/concurrent/ReentrantLock_test.go (about) 1 /* 2 * Copyright (c) 2022 tursom. All rights reserved. 3 * Use of this source code is governed by a GPL-3 4 * license that can be found in the LICENSE file. 5 */ 6 7 package concurrent 8 9 import ( 10 "testing" 11 ) 12 13 func TestMutex(t *testing.T) { 14 mutex := &ReentrantLock{} 15 mutex.Lock() 16 mutex.Lock() 17 }