mirror of
				https://github.com/optim-enterprises-bv/databunker.git
				synced 2025-10-31 18:07:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			166 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			166 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| cd src
 | |
| go test -coverprofile=/tmp/coverage.out
 | |
| echo
 | |
| echo "Test summary"
 | |
| go tool cover -func=/tmp/coverage.out
 | |
| echo
 | |
| go tool cover -html=/tmp/coverage.out
 | 
